aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-parsing/quote3.tests
blob: b5fd5978cb8d89071f5f7ed80888fb962391466a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
empty=''

echo 'Testing: in ""'
for a in ""; do echo ".$a."; done

echo 'Testing: in '"''"
for a in ''; do echo ".$a."; done

echo 'Testing: in $empty'
for a in $empty; do echo ".$a."; done

echo 'Testing: in $empty""'
for a in $empty""; do echo ".$a."; done

echo 'Testing: in $empty'"''"
for a in $empty''; do echo ".$a."; done

echo 'Testing: in "$empty"'
for a in "$empty"; do echo ".$a."; done

echo Finished