次のディレクトリ構造があるとしましょう。
base/
|
+-- app
| |
| +-- main
| |
| +-- sub
| |
| +-- first
| | |
| | +-- tib1.ear
| | \-- tib1.xml
| |
| \-- second
| |
| +-- tib2.ear
| \-- tib2.xml
ear
ファイルへの相対パスの1つはbase/app/main/sub/first/tib1.ear
ですが、次の部分文字列を抽出するにはどうすればよいですか。
tib1.ear
またはtib2.ear
base/app/
の後のサブディレクトリ。ただし、ファイルは含まれません。main/sub/first
またはmain/sub/second
です。すべてのディレクトリ名は動的に生成されるため、base/app/
を超えてそれらを知らないため、既知のサブ文字列の長さを単純に使用してcut
を使用してそれらを切り捨てることはできません。しかし、ファイル名がわかれば、それがどのように可能になるかがわかります。他の結果の長さに基づいて、文字列の束をカットして結合するよりも簡単な方法があるように感じます。
これに似たものの正規表現の魔法を見たのを覚えています。部分文字列をバックスラッシュで分割して結合することを扱っていましたが、残念ながら、それらがどのようにそれを行ったか、またはここでもう一度調べた場所を覚えていません。
ファイル名から始めましょう:
$ f=base/app/main/sub/first/tib1.ear
ベース名を抽出するには:
$ echo "${f##*/}"
tib1.ear
ディレクトリ名の目的の部分を抽出するには:
$ g=${f%/*}; echo "${g#base/app/}"
main/sub/first
${g#base/app/}
と${f##*/}
はプレフィックスの削除の例です。 ${f%/*}
はサフィックスの削除の例です。
man bash
から:
${parameter#Word} ${parameter##Word} Remove matching prefix pattern. The Word is expanded to produce a pattern just as in pathname expansion. If the pattern matches the beginning of the value of parameter, then the result of the expansion is the expanded value of parameter with the shortest matching pattern (the ``#'' case) or the longest matching pattern (the ``##'' case) deleted. If parameter is @ or *, the pattern removal operation is applied to each positional parameter in turn, and the expansion is the resultant list. If parameter is an array variable subscripted with @ or *, the pattern removal operation is applied to each member of the array in turn, and the expansion is the resultant list. ${parameter%Word} ${parameter%%Word} Remove matching suffix pattern. The Word is expanded to produce a pattern just as in pathname expansion. If the pattern matches a trailing portion of the expanded value of parameter, then the result of the expansion is the expanded value of parameter with the shortest matching pattern (the ``%'' case) or the longest matching pattern (the ``%%'' case) deleted. If parameter is @ or *, the pattern removal operation is applied to each positional parameter in turn, and the expansion is the resultant list. If parameter is an array variable sub‐ scripted with @ or *, the pattern removal operation is applied to each member of the array in turn, and the expansion is the resultant list.
ユーティリティbasename
およびdirname
を検討することもできます。
$ basename "$f"
tib1.ear
$ dirname "$f"
base/app/main/sub/first
テストファイルの作成
mkdir -p base/app/main/sub/{first,second}
touch base/app/main/sub/first/tib1.{ear,xml}
touch base/app/main/sub/second/tib2.{ear,xml}
bashでearファイルを見つける
shopt -s globstar nullglob
ear_files=( base/**/*.ear )
printf "%s\n" "${ear_files[@]}"
base/app/main/sub/first/tib1.ear
base/app/main/sub/second/tib2.ear
配列を反復処理し、John1024の回答を使用して、各パスから必要な情報を抽出します。
for f in "${ear_files[@]}"; do ...; done