If I run the command
FOO=bar echo $FOO
I would expect it to bar
, but it just echoes an empty string.
It appears that $FOO
is not getting set.
What am I doing wrong?
If I run the command
FOO=bar echo $FOO
I would expect it to bar
, but it just echoes an empty string.
It appears that $FOO
is not getting set.
What am I doing wrong?