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 \;