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.
我想将过去 3 天内创建的文件从一个目录复制到另一个目录。我正在使用该命令find . -mtime -3列出最新文件,但是如何将其复制到另一个目录?
find . -mtime -3
谢谢!
这个答案应该可以帮助你
find . -mtime -3 -exec cp {} /destinationfolder \;