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 日以上前のすべてのテキスト ファイルを検索し、単一のコマンドで別の場所に移動するには、Unix コマンドが必要です。
その場合、その -exec フラグと -mtime フラグを見つけて使用します。
次のようになります。
find . -mtime -3 -type f -print0 | xargs -0 -I file mv file /new/dir/.
男は見つける
男 xargs