set -x pids=( 123 456 789 012 )IFS=02468 # now entering Insanity World!echo "${pids[@]}"echo ${pids[*]}
Standard input is empty
123 456 789 012 1 3 5 7 9 1
+ pids=(123 456 789 012) + IFS=02468 + echo 123 456 789 012 + echo 1 3 '' 5 '' 7 9 '' 1
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!