查找 UNIX 上的命令特征

发布于 2024-10-30 02:11:31 字数 109 浏览 2 评论 0原文

如何使用find命令同时从directory2和directory3中删除一些文件?

目录 1 中的某些文件与目​​录 0 中的其他 2 个目录和目录 1、2、3 中的文件具有相同的特征。

How can I delete from directory2 and directory3 some files in the same time using the find command?

Some files of directory1 valides the same characteristics of the files in the 2 others directory and directories 1,2,3 figures in the directory0.

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

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

发布评论

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

评论(2

自演自醉 2024-11-06 02:11:31

我想你的意思是:

(cd directory1 | find -iname 'somename' -print0) |
    tee >(cd directory2 && xargs -0 rm -fvi) |
    tee >(cd directory3 && xargs -0 rm -fvi)

随意?但一旦你提出问题,我会让答案更具体

I suppose you meant:

(cd directory1 | find -iname 'somename' -print0) |
    tee >(cd directory2 && xargs -0 rm -fvi) |
    tee >(cd directory3 && xargs -0 rm -fvi)

ad libitum? But I'll make the answer more specific once you do your question

骄兵必败 2024-11-06 02:11:31

查找(来自 man 示例)

find / -newerct '1 minute ago' -print
             Print out a list of all the files whose inode change 
             time is more recent than the current time minus one minute

删除

find / -newerct '1 minute ago' -print | xargs rm

To find (From the man examples)

find / -newerct '1 minute ago' -print
             Print out a list of all the files whose inode change 
             time is more recent than the current time minus one minute

To remove

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