Table of Contents

Shell scripting

Here will be some useful examples and snippet

Debug scripts

# sh -x some-script-name.sh

Differences between single and double quotes

Single quotes won't interpolate anything, but double quotes will. For example: variables, backticks, certain \ escapes, etc.

$ echo "$(echo "upg")"
upg
 
$ echo '$(echo "upg")'
$(echo "upg")