使用 shell 脚本遍历目录

发布于 2024-12-15 13:15:14 字数 72 浏览 1 评论 0原文

我正在尝试使用 shell 脚本遍历当前目录下的所有目录。在每个子目录中,都有一个 makefile,我想执行它。知道该怎么做吗?

I am trying to traverse all directories under the current directory using a shell script. In each of those sub directories, there is a makefile and I want to execute it. Any idea how to do ?

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

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

发布评论

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

评论(1

顾忌 2024-12-22 13:15:14

尝试使用 find

find -iname makefile -execdir make -f {} \;

这将找到每个名为 makefile 的文件(或 Makefile,或者单词 makefile 的任何不同情况,感谢 thiton)(递归地),然后针对它启动 make。

Try with find :

find -iname makefile -execdir make -f {} \;

That will find every file named makefile (or Makefile, or whatever different case for word makefile, thanks to thiton) (recursively) and then launch make against it.

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