mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 15:43:18 +02:00
10 lines
82 B
Plaintext
10 lines
82 B
Plaintext
OIFS=$IFS
|
|
IFS=":$IFS"
|
|
foo=$(echo a:b:c)
|
|
IFS=$OIFS
|
|
|
|
for i in $foo
|
|
do
|
|
echo $i
|
|
done
|