Hi !
What is the purpose of that '$' in front of an string, like in
in bash scripts ?
You can see it all around in scripts at /etc/init.d but I was not able to figure out what is its purpose, neither found references to it in bash man page....
The only reference to it is indirect:
from bash man page:
Code:
extquote
If set, $'string' and $"string" quoting is performed within ${parameter} expansions enclosed in double quotes.
This option is enabled by default.
