Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2808

findコマンドでファイルを検索

$
0
0
ファイルを検索 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

Viewing all articles
Browse latest Browse all 2808

Trending Articles