파라미터 확장 bash
bash
이 경우 매개 변수 확장을 사용할 수 있습니다.
${parameter%word}
곳 word
이다/*
${parameter##word}
곳 word
이다*/
예 :
마지막 부분을 제거
$ asdf="xxx/xxxx/xxxxx/yyy"
$ echo ${asdf%/*}
xxx/xxxx/xxxxx
이에 대한 설명은 다음과 man bash
같습니다.
${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 posi‐
tional 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.
마지막 부분을 제외한 모든 부분을 제거
$ asdf="xxx/xxxx/xxxxx/yyy"
$ echo ${asdf##*/}
yyy
슬래시를 추가 할 수 있습니다
$ echo /${asdf##*/}
/yyy
편집 된 질문에 따라 특정 인스턴스에서 원하는 것을 정확하게 얻을 수 있습니다. 그러나 그 후 여러 사람들이 질문을 편집했으며 지금 원하는 것을 쉽게 알 수 없습니다.
이에 대한 설명은 다음과 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 pat‐
tern (the ``##'' case) deleted. If parameter is @ or *, the
pattern removal operation is applied to each positional parame‐
ter in turn, and the expansion is the resultant list. If param‐
eter 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.