if --help
端末では動作しません。なぜですか?
Linux Mint 19.3シナモン64ビット
シェル:バッシュ
答え1
参照:help --help
またはhelp
Display information about builtin commands.
help if
:
if: if COMMANDS; then COMMANDS; [ elif COMMANDS; then COMMANDS; ]... [ else COMMANDS; ] fi
Execute commands based on conditional.
The `if COMMANDS' list is executed. If its exit status is zero, then the
`then COMMANDS' list is executed. Otherwise, each `elif COMMANDS' list is
executed in turn, and if its exit status is zero, the corresponding
`then COMMANDS' list is executed and the if command completes. Otherwise,
the `else COMMANDS' list is executed, if present. The exit status of the
entire construct is the exit status of the last command executed, or zero
if no condition tested true.
Exit Status:
Returns the status of the last command executed.
答え2
これをどこで見たのかわかりませんが、これは設定をテストするために使用されるシェルのキーワードなので、if
一般的なオプションとして--help
呼び出すことはできません。代わりに、Ctrl-C
開始されたコマンドを強制終了するまで、追加の入力(テストステートメントなど)をブロックして待ちます。
if
シェルスクリプトでキーワードを使用する方法に関するヘルプが必要な場合バッシュリファレンスマニュアルまたは Lhunath & GreyCat's強打ガイド始めるのに良い場所かもしれません。