aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-bugs/quote3.tests
blob: c52e040cc280c3cfef0977c7990c0198e5ca8d10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if test $# = 0; then
    exec "$THIS_SH" quote3.tests abc "d e"
fi

echo 'Testing: in $empty""'
empty=''
for a in $empty""; do echo ".$a."; done
echo 'Testing: in "$*"'
for a in "$*"; do echo ".$a."; done
echo 'Testing: in "$@"'
for a in "$@"; do echo ".$a."; done
echo Finished