标签: unix directory find
我试图让Unix“查找”在搜索特定文件时不列出目录。
find <path> -name filename <Dont't list matching directories>
答案 0 :(得分:4)
find <path> -name filename ! -type d
答案 1 :(得分:3)
您可以使用-type参数,因此您可能希望包含-type f以仅匹配文件。
-type
-type f
答案 2 :(得分:0)