Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个 Unix 命令来查找所有超过 3 天的文本文件,并在单个命令中将它们移动到其他位置。
在这种情况下,您需要查找并使用它的 -exec 和 -mtime 标志。
它应该是这样的:
find . -mtime -3 -type f -print0 | xargs -0 -I file mv file /new/dir/.
男人发现
人 xargs