Unix 查找时忽略目录
我试图让 Unix 在搜索特定文件时“查找”不列出目录。
find <path> -name filename <Dont't list matching directories>
I was trying to make Unix "find" not to list the directories while searching for a particular file.
find <path> -name filename <Dont't list matching directories>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
-type
参数,因此您可能希望包含-type f
以仅匹配文件。You can use the
-type
argument, so you probably want to include-type f
to match only files.或者
OR