📌  相关文章
📜  cshell 按名称查找文件 - Shell-Bash 代码示例

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

代码示例1
find  - name "*filename*"
 -> to find in this folder type '.'
the '*' in the filename means each wildcard, any string

 <<< examples >>>:
find . -name "*.txt"
find . -name "goku.*"