Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下查找命令来查找卷中的所有文件:
find ./ -type f
我将如何排除所有以 开头的文件.?另外,我确实想包含以下文件夹,.例如:
.
.Trashes/file.php
folder/.hidden_file.php
什么是正确的find命令?
find
要排除名称以 开头的所有文件.:
find ./ -type f ! -name '.*'
这将在所有目录中搜索(即使它们的名称以点开头),从当前目录下降,查找名称不以点 ( ! -name '.*') 开头的常规文件。
! -name '.*'