taquaki-satwo
12/26/2017 - 2:50 AM

findコマンド

linux-findコマンド

# 空ディレクトリを削除
find . -type d -empty -delete

# 指定した拡張子のファイル以外を削除(ディレクトリも)
find . -not -name '*.html' -ls -delete

# 指定した拡張子のファイルを一覧表示
find . -name '*.html' type -f -ls

# 指定した拡張子のファイルを削除
find . -name '*.jpg' -type f -ls -delete

# 検索結果を出力
find <ディレクトリ> -not -name "<~を除く>" -type f | sort > <出力ファイル>.md