如何在Linux中递归地找到目录中的所有*.js文件?

发布于 2024-11-15 15:38:34 字数 1459 浏览 1 评论 0原文

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

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

发布评论

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

评论(3

鹤仙姿 2024-11-22 15:38:34

find /abs/path/ -name '*.js'

编辑: 正如 Brian 指出的,如果您只想要纯文本,请添加 -type f文件,而不是目录、链接等。

find /abs/path/ -name '*.js'

Edit: As Brian points out, add -type f if you want only plain files, and not directories, links, etc.

糖果控 2024-11-22 15:38:34

在命令行上使用 find

find /my/directory -name '*.js'

Use find on the command line:

find /my/directory -name '*.js'
兮颜 2024-11-22 15:38:34

如果您只想要列表,那么您应该在这里询问:http://unix.stackexchange.com

答案是:cd /&& find -name *.js

如果你想实现这个,你必须指定语言。

If you just want the list, then you should ask here: http://unix.stackexchange.com

The answer is: cd / && find -name *.js

If you want to implement this, you have to specify the language.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文