]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/parser/for2.0
54ebfc3d719350ca9c122a6a28a255890a57c85c
[apple/shell_cmds.git] / sh / tests / parser / for2.0
1 # $FreeBSD$
2
3 # Common extensions to the 'for' syntax.
4
5 nl='
6 '
7 list=' a b c'
8 set -- $list
9 for s2 in ";" ";$nl"; do
10 for s3 in "$nl" " "; do
11 r=''
12 eval "for i${s2}do${s3}r=\"\$r \$i\"; done"
13 [ "$r" = "$list" ] || exit 1
14 done
15 done