一次在多个子目录中创建占位符文件
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有
-mindepth
选项:There is the
-mindepth
option: