aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-parsing/comment2.tests
blob: b7adad96a1d48dd86383f34e6874dcb2facc1e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
echo "`echo Ok1 #comment is ignored`"
echo `echo Ok2 #comment is ignored`
#
# Surprisingly, bash does not handle comments in $()
# the same way as in ``. "#" causes the rest of the line, _including_ )",
# to be ignored. These lines would cause an error:
#echo "$(echo Ok3 #comment is ignored)"
#echo $(echo Ok4 #comment is ignored)
#
echo "$(echo Ok5 #comment is ignored
)"
echo $(echo Ok6 #comment is ignored
)