Forrest logo
back to context overview

bash

List of commands for bash:

  • bash:ai:8d936 This command runs the findit.sh script located in the /opt/scripts directory.
    $ bash /opt/scripts/findit.sh
    try on your machine
    explain this command
  • bash:tldr:4268c bash: Execute a specific script and stop at the first [e]rror.
    $ bash -e ${path-to-script-sh}
    try on your machine
    explain this command
  • bash:tldr:73c4d bash: Start an interactive shell session without loading startup configs.
    $ bash --norc
    try on your machine
    explain this command
  • bash:tldr:84700 bash: Execute a specific script while printing each command before executing it.
    $ bash -x ${path-to-script-sh}
    try on your machine
    explain this command
  • bash:tldr:854ba bash: Execute specific [c]ommands.
    $ bash -c "${echo 'bash is executed'}"
    try on your machine
    explain this command
  • bash:tldr:90926 bash: Execute a specific script.
    $ bash ${path-to-script-sh}
    try on your machine
    explain this command
  • bash:tldr:bc531 bash: Execute specific commands from `stdin`.
    $ ${echo "echo 'bash is executed'"} | bash
    try on your machine
    explain this command
  • bash:tldr:d574d bash: Start an interactive shell session.
    $ bash
    try on your machine
    explain this command
back to context overview