mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 23:53:18 +02:00
6 lines
63 B
Plaintext
6 lines
63 B
Plaintext
OIFS="$IFS"
|
|
IFS=":$IFS"
|
|
eval foo="a:b:c"
|
|
IFS="$OIFS"
|
|
echo $foo
|