web-dev-qa-db-ja.com

部分的に既知のディレクトリからサブディレクトリパスを抽出する

次のディレクトリ構造があるとしましょう。

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を使用してそれらを切り捨てることはできません。しかし、ファイル名がわかれば、それがどのように可能になるかがわかります。他の結果の長さに基づいて、文字列の束をカットして結合するよりも簡単な方法があるように感じます。

これに似たものの正規表現の魔法を見たのを覚えています。部分文字列をバックスラッシュで分割して結合することを扱っていましたが、残念ながら、それらがどのようにそれを行ったか、またはここでもう一度調べた場所を覚えていません。

4
Darrel Holt

ファイル名から始めましょう:

$ 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
7
John1024

テストファイルの作成

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
2
glenn jackman