需要在 Linux 中使用一个衬垫来访问多个目录中的一个文件
我有很多目录。我需要 cd 到所有目录并创建 2 个文件。我尝试使用 xargs 执行此操作,但我做不到。你能告诉我如何实现这一目标吗?
I have lots of directories. I need to cd
to all the directories and create 2 files. I tried doing this using xargs, but I couldn't do it. Can you please tell me how to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不想或不需要运行
find
但有一个目录列表,如下所示:如果目录路径完全规则(例如,所有子目录向下两级),则可能很简单作为
If you don't want or need to run
find
but have a list of directories, something like this:If the directory paths are completely regular (e.g. all subdirectories two levels down), it might be as easy as
路径可能是。如果您已经位于您感兴趣的顶级目录中。
path may be . if you are already in the top directory you are interested to work on.