]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/ifs-3.test
Imported from ../bash-2.01.1.tar.gz.
[thirdparty/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