最近使った便利なLinuxコマンド
Macが作った._ ファイルを一括で削除したい
1 | find /directory_path -iname '._*' -exec rm -rf {} \; |
一定期間で更新したファイルを割り出したい
1 | find /directory_path -type f -mtime -30 -print // 30日以内更新したファイル |
1 | find /directory_path -type f -mmin -120 -print // 120分以内更新したファイル |
1 2 3 4 | // 今日更新したファイル touch -t `date +%m%d0000` /tmp/hoge find /directory_path -type f -newer /tmp/hoge rm /tmp/hoge |
Author Profile
スターフィールド編集部
SHARE