In Bash shell scripting, what is the difference between single quotes ('') and double quotes ("")?
feedback
|
|
Single quotes won't interpolate anything, but double quotes will (for example variables, backticks, certain The Bash manual has this to say:
| ||||
|
feedback
|
|
If you're referring to what happens when you echo something, the single quotes will literally echo what you have between them, while the double quotes will evaluate variables between them and output the value of the variable. For example,
will give this: double quotes gives you sometext | |||
|
feedback
|