What is the output of the following command sequence?
for token in a b c; do
echo -n "$token ";
done
anbncn
a b c
"a " "b " "c "
token token token
abc
Submit