📌  相关文章
📜  如何在 ubuntu 中搜索目录文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:43.352000             🧑  作者: Mango

代码示例3
// Using backslash and asterisk (\*) at the end will search for all files that start with your search term (in this case "readme"). So you would also be able to find "readme2" etc. 
find . -name readme\*