If I want to something like:
foo="bar baz"
foo='bar baz'
Is it best practice to use double-quotes or single-quotes?
|
If I want to something like:
Is it best practice to use double-quotes or single-quotes?
| ||||
|
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
I tend to use double quotes unless I really need to use single quotes to stop variable interpolation or for other reasons. Maybe this is part of my growing up with languages like Pascal, Fortran, and Basic which used double quotes and not single quotes. However, since most of the strings you use in BASH will do variable interpolation, you might as well get in the habit of using double quotes instead of thinking whether you need double quotes or single quotes in a statement. Also you're variable might be:
now, but when you modify it:
You don't have to also remember to edit the quotes while, you're at it. In the few situations where you actually need single quotes, you can easily mentally shift the other way around. | |||
|
feedback
|
|
It depends, as usual:
If you want to know if you should use
| ||||
|
feedback
|
|
When it doesn't matter, it doesn't matter. Consistency is good though, so choose which one you like and use it consistently within your own code. | |||
|
feedback
|
|
There is a microefficiency argument in favor of single quotes, as the shell does not have to examine the quote to see if anything needs to be interpolated. In Perl, for example, using single quotes for any literal string is sometimes considered a best practice. | |||
|
feedback
|