-
ファイル名で検索
$ find ./ -name "*.rb"
-
ファイルサイズで検索
$ find . -size 0 # empty file $ find . -size 1000c # 1000バイト $ find . -size 1000k # 1000KB $ find . -size +1000c # 1000バイト以上 $ find . -size -1000c # 1000バイト以下
-
ファイルタイプで検索
$ find ./ -type f # ファイル $ find ./ -type d # フォルダ $ find ./ -type l # symbolic link
-
権限で検索
権限の確認はこちら
特定権限マッチ -
いずれかマッチ +$ find ./ -perm -g+w # グループに書き込み権限がある $ find ./ -perm 644 $ find . -perm +111 # ユーザー,グループ,その他のユーザーのいずれかに実行権限ある
-
時間で検索
$ find . -amin 120 # 最後にアクセスした時間が2時間前 $ find . -atime 2 # 最後にアクセスした時間が2日前 $ find . -mmin -10 -mmin -20 # 10分前から20分前までに変更されたファイル $ find . -mtime -10 -mtime -20 # 10日前から20日前までに変更されたファイル $ find . -newermt "2015-10-01" -and ! -newermt "2016-01-31" -ls # 2015-10-01から2016-01-31までのファイル
-
ファイル検索して削除
$ find . -size 0 | xargs rm -rf # 空ファイルを全部削除
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme