パターンマッチング

二重アスタリスク(*)でサブディレクトリにマッチさせる

今回のファイル構成

 .
 |-- A
 |   `-- a.txt
 |-- B
 |   `-- b.jpg
 `-- x.txt

サブディレクトリ下の.txtファイルにマッチ

 $ ls -1 **/*.txt
 A/a.txt

カレントディレクトリとサブディレクトリ下の.txtファイルにマッチ

 $ ls -1 {,**/}*.txt
 A/a.txt
 x.txt

参考

http://stackoverflow.com/questions/1690809/what-expands-to-all-files-in-current-directory-recursively


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2014-07-28 (月) 15:29:33