Imported from ../bash-2.05a.tar.gz.
[platform/upstream/bash.git] / tests / ifs-3.test
1 OIFS=$IFS
2 IFS=":$IFS"
3 foo=`echo a:b:c`
4 IFS=$OIFS
5
6 for i in $foo
7 do
8         echo $i
9 done