Vorgang | Bourne Shell (sh) | Bourne-again shell (bash) | Korn-Shell (ksh) | C-Shell (csh) |
---|---|---|---|---|
Konfigurationsdateien | /etc/profile | /etc/csh.cshrc /etc/csh.login |
||
~/.bash_profile ~/.bash_login | ~/.tcshrc oder ~/.cshrc ~/.history ~/.login ~/.cshdirs |
|||
~/.profile | ~/.login |
|||
Variablen exportieren | FOO=BAR
export BAR
| export FOO=Bar | FOO=Bar
export FOO
| setenv FOO Bar |
Vervollständigung | TAB | ESC ESC |
||
letztes Kommandi wiederholen | !! | r | ! |
|
wiederhole 4. Kommando | !-4 | !4 |
||
wiederhole letztes Kommando, welches mit yxz beginnt | !xyz | !xyz |
||
wiederhole letztes Kommando, welches xyz enthält | !?xyz | !?xyz |
||
letztes Argument des vorhergehenden Befehls einsetzen | !$ Beispiel: ls foo*.txt cat !$ ergibt cat foo*.txt |