rbash
Restricted Bash shell, equivalent to `bash --restricted`.
Does not permit changing the working directory, redirecting command output, or modifying environment variables, among other things.
See also `histexpand` for history expansion.
- Start an interactive shell session:
rbash
- Execute a command and then exit:
rbash -c "{command}"
rbash {path/to/script.sh}
- Execute a script, printing each command before executing it:
rbash -x {path/to/script.sh}
- Execute commands from a script, stopping at the first error:
rbash -e {path/to/script.sh}
- Read and execute commands from stdin:
rbash -s
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).