📌  相关文章
📜  特定文件夹中的 ubuntu 搜索文件 - Shell-Bash 代码示例

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

代码示例1
// 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\*