aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/for_with_bslashes.tests
blob: 8acd9808ad89afd9e01c55f3c25cf466232b9653 (plain)
1
2
3
4
5
6
# last word contains ^C character.
for a in 'a' 'b\c' 'b\\c' 'b"c' "b'c" 'b$c' 'b`true`c' 'b#c'
do
    echo $a
done
echo Zero:$?