1

今日、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#*@}が機能します。#は、展開された*@を使用して置換をトリガーします。しかし、それは何に拡張されますか?マニュアルページで使用されている単語ではありませんか?

ヒント/ヒントをいただければ幸いです。

ザック

4

2 に答える 2

2

このスクリプトでは、「* @」は実際にはグロブパターンであり、いかなる種類の特別なパラメータでもありません。

$ host="${1:-ubuntu@example.com}"; echo "${host#*@}"
example.com

この構成は、 hostの値と照合されたときに、globの最も短い一致プレフィックスを削除します。globはアットマークまで(およびアットマークを含む)文字列内のすべてに一致するため、最終結果はドメイン名になります。

于 2012-06-28T07:46:22.867 に答える
0

ホストのパターン*@に一致するプレフィックスを削除します(したがって、*@はubuntu@に展開されます)。たとえば、ubuntu @ example.comはexample.com、つまりドメイン名になります。

于 2012-06-28T07:29:27.123 に答える