Imported from ../bash-2.01.1.tar.gz.
[platform/upstream/bash.git] / tests / ifs-test-3.sh
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