bash
スポンサーリンク
何するコマンド?
書き方
bash [オプション] [あれやこれやの引数]
オプション
| オプション | 説明 |
|---|---|
| -c 【コマンド】 | 【コマンド】をコマンドとして実行する |
| -i | 対話モードとやらで動作する |
| -l | ログインシェルと同じように動作する |
| -r | 制限された状態とやらになるらしい |
| -s | If the -s option is present, or if no arguments remain after option processing, then commands are read from the standard input. This option allows the positional parameters to be set when invoking an interactive shell. |
| -D | A list of all double-quoted strings preceded by $ is printed on the standard output. These are the strings that are subject to language translation when the current locale is not C or POSIX. This implies the -n option; no commands will be executed. |
| -- | それ以降のオプションを無視する |
補足事項
bashはシェルの種類です。
詳細は、用語「bash」の説明を ご覧ください。
オプションがいろいろありますが心配いりません。
対象を指定しないで単に
bash
と打てば大抵の場合は事足ります。
