summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/hush_test/hush-misc/for_with_bslashes.tests
blob: 363f3d85b3b8e45998fd8524ff565c5b33c4ea1c (plain)
1
2
3
4
5
6
7
8
9
10
# UNFIXED BUG.
# commented-out words contain ^C character.
# It's a SPECIAL_VAR_SYMBOL, for now hush does not escape it.
# When it is fixed, update this test.

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:$?