Size: 1286
Comment:
|
Size: 1356
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 19: | Line 19: |
===== Completion ===== ===== History ===== ===== Job Control ===== |
Contents
Invocation Modes
Mode |
Bash |
POSIX Shell |
-bash [options] |
-sh |
|
sh -l |
||
sh --login |
||
bash -c 'command' [options] |
sh [options] -c 'command' |
|
Interactive Shell |
bash -i |
sh -i |
Shell Script |
#!/bin/bash [option] |
#!/bin/sh [option] |
Command File |
bash [options] file [args] |
sh [options] file [args] |
Command Stream |
bash [options] -s [SHELL [ARGS]] |
sh [options] -s [SHELL [ARGS]] |
Login Shell
Command String
Interactive Shell
Prompting
Completion
History
Job Control
Shell Script
Command File
Command Stream
Restricted Shell
- Bash invocation modes.