Forrest logo
back to context overview

dash

List of commands for dash:

  • dash:tldr:23161 dash: Execute specific [c]ommands.
    $ dash -c "${echo 'dash is executed'}"
    try on your machine
    explain this command
  • dash:tldr:54e0c dash: Check a specific script for syntax errors.
    $ dash -n ${path-to-script-sh}
    try on your machine
    explain this command
  • dash:tldr:5d4f0 dash: Execute a specific script and stop at the first [e]rror.
    $ dash -e ${path-to-script-sh}
    try on your machine
    explain this command
  • dash:tldr:9c4a1 dash: Execute specific commands from `stdin`.
    $ ${echo "echo 'dash is executed'"} | dash
    try on your machine
    explain this command
  • dash:tldr:9f2a5 dash: Execute a specific script while printing each command before executing it.
    $ dash -x ${path-to-script-sh}
    try on your machine
    explain this command
  • dash:tldr:b671e dash: Execute a specific script.
    $ dash ${path-to-script-sh}
    try on your machine
    explain this command
  • dash:tldr:b999a dash: Start an interactive shell session.
    $ dash
    try on your machine
    explain this command
back to context overview