誰でも理由を説明できますか
VBB:~ me$ test="zut"; echo $test; echo $test > test2; echo "echo test " $test2
出力は次のとおりです。
zut
echo test
VBB:~ me$
そしてそうではない
zut
echo test zut
VBB:~ me$
誰でも理由を説明できますか
VBB:~ me$ test="zut"; echo $test; echo $test > test2; echo "echo test " $test2
出力は次のとおりです。
zut
echo test
VBB:~ me$
そしてそうではない
zut
echo test zut
VBB:~ me$
echo $test > test2
出力を test2 という名前のファイルに書き込むためです。
この一連のコマンドは、期待どおりのことを行います。
test="zut"; echo $test; test2=$test; echo "echo test " $test2
最初の回答に加えて、ファイル内の値を変数に割り当てることができます。
echo "$var" ; var= more test2
したがって、ファイル test2 に書き込んだ後に文字列を取得できます