ファイルを検索
find [path] [option] [pattern]
-nameオプション
find . -name "test.txt"
ワイルドカードを使用し特定の拡張子のファイルを検索
find . -name ".html"
find . -name ".php"
find . -name "*.rb"
-typeオプション
ファイルを検索 find . -type f
ディレクトリを検索 find . -type d
↧