今日、bashスクリプトに遭遇しました。これには、次の先頭行があります。
$ cat -n deploy.sh
1 #!/bin/bash
2
3 # Usage: ./deploy.sh [host]
4
5 host="${1:-ubuntu@example.com}"
6
7 # The host key might change when we instantiate a new VM, so
8 # we remove (-R) the old host key from known_hosts
9 ssh-keygen -R "${host#*@}" 2> /dev/null
[...]
5行目は簡単です。9行目で私を捕まえました。私はそれが一種のbashパラメータ拡張であると「信じています」が、manページを読んで、私はもうそれほど確信が持てません。
bashのmanページからの引用:
${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.
このようなスクリプトを実行するとします
./deploy.sh
入力パラメータがない場合、5行目までに、ホストはubuntu@example.comに設定されます。次に9行目で、$ {host#*@}が機能します。#は、展開された*@を使用して置換をトリガーします。しかし、それは何に拡張されますか?マニュアルページで使用されている単語ではありませんか?
ヒント/ヒントをいただければ幸いです。
ザック