Bash
Variables Commands
Work with Bash variables and parameters. Learn expansion, substitution, and variable manipulation techniques.
14 commands
Pro Tips
Use '${var:-default}' to provide a default value if variable is unset or empty.
Use 'readonly VAR=value' to make constants that can't be changed.