如何递归搜索具有特定扩展名的文件?

发布于 2024-11-07 02:38:55 字数 102 浏览 0 评论 0原文

我需要找到我的 Linux 系统(专用网络托管)上的所有 .psd 文件。我尝试了这样的操作:ls -R *.psd,但这不起作用。建议?

I need to find all the .psd files on my Linux system (dedicated web hosting). I tried something like this: ls -R *.psd, but that's not working. Suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

与往事干杯 2024-11-14 02:38:55

您可以使用以下 find 命令来执行此操作:

find /path/to/search -iname '*.psd'

iname 执行不区分大小写的搜索。

You can use the following find command to do that:

find /path/to/search -iname '*.psd'

iname does a case insensitive search.

燃情 2024-11-14 02:38:55

你也可以,

ls ./**/*.psd

但是:

  • 你必须有 bash 版本 4+
  • 你必须在你的 .bashrc 或 .profile 等中有 shopt -s globstar #...
  • 将搜索区分大小写(或者你必须设置 <代码>shopt -s nocaseglob 也是)

you also can

ls ./**/*.psd

but:

  • you must have bash version 4+
  • you must have shopt -s globstar #in your .bashrc or .profile, etc....
  • will search case sensitive (or you must set shopt -s nocaseglob too)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文