* パターンマッチング [#e228c934]

** 二重アスタリスク(*)でサブディレクトリにマッチさせる [#e4fcb8ce]
*** 今回のファイル構成 [#b5882e99]
 .
 |-- A
 |   `-- a.txt
 |-- B
 |   `-- b.jpg
 `-- x.txt

*** サブディレクトリ下の.txtファイルにマッチ [#md9ee10b]
 $ ls -1 **/*.txt
 A/a.txt

*** カレントディレクトリとサブディレクトリ下の.txtファイルにマッチ [#x26a1898]
 $ ls -1 {,**/}*.txt
 A/a.txt
 x.txt

*** 参考 [#c47af315]
http://stackoverflow.com/questions/1690809/what-expands-to-all-files-in-current-directory-recursively

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