web-dev-qa-db-ja.com

PS2、PS3、PS4はどのような状況でプロンプトとして使用されますか?

シェルにログオンすると、PS1に値が保存されているプロンプトが表示されます。

Here-document構文を使用したときに、別のプロンプトにも遭遇しました(どのプロンプトかはわかりません)。

bc << HERE
>

しかし、それがすべてのタイプのプロンプトです。今まで出会ったことがあります。どのような状況がさまざまな種類のプロンプトを呼び起こしますか?

33
Abdul Al Hazred

Bashのドキュメントには次のように書かれています。

PS1    The  value  of  this parameter is expanded (see PROMPTING below)
       and used as the primary Prompt string.   The  default  value  is
       ``\s-\v\$ ''.
PS2    The  value of this parameter is expanded as with PS1 and used as
       the secondary Prompt string.  The default is ``> ''.
PS3    The value of this parameter is used as the Prompt for the select
       command (see Shell GRAMMAR above).
PS4    The  value  of  this  parameter  is expanded as with PS1 and the
       value is printed before each command  bash  displays  during  an
       execution  trace.  The first character of PS4 is replicated mul‐
       tiple times, as necessary, to indicate multiple levels of  indi‐
       rection.  The default is ``+ ''.

したがって、PS1は通常の「コマンド待ち」プロンプト、PS2は不完全なコマンドを入力した後に表示される継続プロンプト、PS3selectコマンドは入力を待機しており、PS4はデバッグトレース行の接頭辞です。

私が引用したドキュメントはそうではありませんが、bashのPS3のデフォルトは#?です:

$ select x in foo bar baz; do echo $x; done
1) foo
2) bar
3) baz
#? 3
baz
#? 2
bar
#? ^C
44
dhag