User Tools

Site Tools


sandbox:shell-scripting

This is an old revision of the document!


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")
sandbox/shell-scripting.1556225185.txt.gz · Last modified: 2019/04/25 23:46 by dreiggy

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki