次のようなものを出力するプログラムがあります。
stuff=Some text with spaces and other $pecial characters stuff2=1 stuff3=0
変数で stuff2=1 までのすべての文字列を取得しようとしているので、変数は次のようになります。
stuff=Some text with spaces and other $special characters
私はこれを試しました:
for word in $output
while [ $word != "stuff2=1" ]
do
var+=" "$word
done
done
しかし、私が得るのは「stuff = Some」だけです。