Find命令——查找当前目录及子目录
一、格式
find <path> [options] [expression]
1、path:需要查找的目录的路径
find ~ | $HOME目录 |
find . | 当前目录 |
find / | 根目录,可以继续向子目录限制 |
如果限制在当前目录而不进行子目录的查找,则加入:-maxdepth 1
find <path> [options] [expression]
1、path:需要查找的目录的路径
find ~ | $HOME目录 |
find . | 当前目录 |
find / | 根目录,可以继续向子目录限制 |
如果限制在当前目录而不进行子目录的查找,则加入:-maxdepth 1