This question already has an answer here:
- Difference between single and double quotes in Bash 6 answers
- When to wrap quotes around a shell variable? 5 answers
$ volume=vol1
$ echo $volume
vol1
$ volume="vol1"
$ echo $volume
vol1
$ volume='vol1'
$ echo $volume
vol1
What is the difference between the above in bash scripting? All are one and same?