Bash How To Quotes Work

[Solved] Bash How To Quotes Work | Vb - Code Explorer | yomemimo.com
Question : bash quotes

Answered by : charlesalexandre-roy

# Short answer:
# Single quotes don't allow interpolation, but double quotes do
# Long answer:
# From Wikipedia:
# In computer programming, string interpolation (or variable interpolation,
#	variable substitution, or variable expansion) is the process of evaluating
#	a string literal containing one or more placeholders, yielding a result in
#	which the placeholders are replaced with their corresponding values.
# Concrete example:
echo "$(echo 'word')" # here, "$(echo 'word')" gets interpolated (interpreted)
--> word
echo '$(echo "word")' # here, '$(echo "word")' is echoed literally (no interpolation)
--> $(echo "word")
# Note, this link also has some good info:
https://stackoverflow.com/questions/10067266/when-should-i-wrap-quotes-around-a-shell-variable/42104627#42104627

Source : https://stackoverflow.com/questions/6697753/difference-between-single-and-double-quotes-in-bash | Last Update : Thu, 03 Mar 22

Answers related to bash how to quotes work

Code Explorer Popular Question For Vb