Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7d36825d7b178368e1fe95599e796aff62d59de1 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

if [ -z $VARIABLE ] ; then
	echo "double quoted text" # some comment
	echo 'single quoted text' # TODO tag
	echo `command substitution`
fi

Back to the top