2023-06-26 find コマンドでファイルを見つける
find
コマンドでファイルを見つけ方。
拡張子txtのファイルだけ抽出
$ find . -name "*.txt" -type f
1MB以上のファイルを抽出
$ find . -type f -size +1M
カレントディレクトリのみ検索
$ find . -maxdepth 1 -type f
find
コマンドでファイルを見つけ方。
$ find . -name "*.txt" -type f
$ find . -type f -size +1M
$ find . -maxdepth 1 -type f