I expected a
to be something after the initial assignment. But I get nothing.
tomas@tomas-Latitude-E4200:~$ echo $a
tomas@tomas-Latitude-E4200:~$ a=0 echo $a
tomas@tomas-Latitude-E4200:~$
Similar unexpected behaviour when a
is set before.
tomas@tomas-Latitude-E4200:~$ a=0
tomas@tomas-Latitude-E4200:~$ a=1 echo $a
0
Well?