Admittedly, I'm a bash neophyte. I always want to reach for Python for my shell scripting purposes. However, I'm trying to push myself to learn some bash. I'm curious why the following code doesn't work.
sh -c "F=\"123\"; echo $F"
|
Admittedly, I'm a bash neophyte. I always want to reach for Python for my shell scripting purposes. However, I'm trying to push myself to learn some bash. I'm curious why the following code doesn't work.
|
|||
|
|
|
It doesn't work because variable expansion in the double-quoted string happens before the command is called. That is, if I type:
The shell transforms this into:
Before actually calling the echo command. Similarly, if you type:
This gets transformed into:
Before calling a the
You can also escape the
|
|||||||||||
|