Could you please tell me how to iterate over list where items can contain whitespaces?
x=("some word", "other word", "third word")
for word in $x ; do
echo -e "$word
"
done
how to force it to output:
some word
other word
third word
instead of:
some
word
(...)
third
word
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…