Unix 查找时忽略目录

发布于 2024-12-10 05:49:46 字数 136 浏览 1 评论 0原文

我试图让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

静谧幽蓝 2024-12-17 05:49:46
find  <path> -name filename ! -type d
find  <path> -name filename ! -type d
Bonjour°[大白 2024-12-17 05:49:46

您可以使用 -type 参数,因此您可能希望包含 -type f 以仅匹配文件。

You can use the -type argument, so you probably want to include -type f to match only files.

℡Ms空城旧梦 2024-12-17 05:49:46
  • 查找-名称文件名-类型f
    或者
  • find -name 文件名 -not -type d
  • find -name filename -type f
    OR
  • find -name filename -not -type d
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文