如何递归搜索具有特定扩展名的文件?
我需要找到我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下 find 命令来执行此操作:
iname
执行不区分大小写的搜索。You can use the following find command to do that:
iname
does a case insensitive search.你也可以,
但是:
shopt -s globstar
#...you also can
but:
shopt -s globstar
#in your .bashrc or .profile, etc....shopt -s nocaseglob
too)