私はこのコードを持っています:
for i in 'some text' "some other text"
do
echo $i
done
出力は次のとおりです
some text
some other text
スペースが印刷されないのはなぜですか?
ベストアンサー1
拡張子引用echo "$i"
:
$ for i in 'some text' "some other text"
do
echo "$i"
done
印刷
some text
some other text
お願いします読む。