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