mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-09 21:20:50 +02:00
10 lines
82 B
Bash
10 lines
82 B
Bash
OIFS=$IFS
|
|
IFS=":$IFS"
|
|
foo=$(echo a:b:c)
|
|
IFS=$OIFS
|
|
|
|
for i in $foo
|
|
do
|
|
echo $i
|
|
done
|