一次在多个子目录中创建占位符文件

发布于 2025-01-11 10:56:55 字数 248 浏览 0 评论 0原文

使用 find 并将结果传递给 touch 我们可以在多个目录中创建一个文件 -placeholder/dummy-:

find 。 -type d -exec touch {}/someFile \;

但是 find . -type d 还返回并在当前目录中创建一个文件。

仅在子目录中创建文件但不在当前目录中创建文件的命令是什么?

Using find and passing the results to touch we can create a file -placeholder/dummy- in multiple dirs:

find . -type d -exec touch {}/someFile \;

however the find . -type d also returns -and creates- a file in the current directory.

What would the command be to just create files in the sub dirs but not the current dir?

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

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

发布评论

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

评论(1

月朦胧 2025-01-18 10:56:55

-mindepth 选项:

find -mindepth 1 -type d -execdir touch '{}'/someFile \;

There is the -mindepth option:

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