bash
Bourne-Again SHell, ansh-compatible command-line interpreter. See also:zsh,histexpand(history expansion). More information: https://gnu.org/software/bash/.
-
Start an interactive shell session:
bash -
Start an interactive shell session without loading startup configs:
bash --norc -
Execute specific [c]ommands:
bash -c "{{echo 'bash is executed'}}" -
Execute a specific script:
bash {{path/to/script.sh}} -
Execute a specific script while printing each command before executing it:
bash -x {{path/to/script.sh}} -
Execute a specific script and stop at the first [e]rror:
bash -e {{path/to/script.sh}} -
Execute specific commands from
stdin:
{{echo "echo 'bash is executed'"}} | bash -
Start a [r]estricted shell session:
bash -r
License and Disclaimer
The content on this page is copyright © 2014—present the tldr-pages team and contributors.This page is used with permission under Creative Commons Attribution 4.0 International License.
While we do attempt to make sure content is accurate, there isn't a warranty of any kind.