Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなシェルプログラムがあります。
#!/bin/sh a=1 b=2 c=`expr $a+$b` echo $c
出力は1+2です。
1+2
でも私が変われば
c=`expr $a+$b\`
に
c=`expr $a + $b`
出力は 3 になります。
ここの空間は何に使うのだろう。