Bash Cheat Sheet A cheat sheet for bash commands. Command History !! # Run the last command touch foo.sh
Bash string manipulation cheatsheet Assignment Assign value to variable if variable is not already set, value is returned.Combine with a : no-op to discard/ignore return value. ${variable="value"}: ${variable="value"}