
rbash
List of commands for rbash:
-
rbash:tldr:73930 rbash: Start an interactive shell session.$ rbashtry on your machineexplain this command
-
rbash:tldr:8dc42 rbash: Execute a script.$ rbash ${path-to-script-sh}try on your machineexplain this command
-
rbash:tldr:a3ee4 rbash: Execute commands from a script, stopping at the first error.$ rbash -e ${path-to-script-sh}try on your machineexplain this command
-
rbash:tldr:aaf30 rbash: Execute a command and then exit.$ rbash -c "${command}"try on your machineexplain this command
-
rbash:tldr:b43de rbash: Execute a script, printing each command before executing it.$ rbash -x ${path-to-script-sh}try on your machineexplain this command
-
rbash:tldr:d6114 rbash: Read and execute commands from `stdin`.$ rbash -stry on your machineexplain this command