November 2013
Beginner
900 pages
56h 6m
English
You can surround a string with single quotes (’) to stop the shell from expanding variables and interpreting special characters. When used for the latter purpose, the single quote is an escape character, similar to the backslash, which you learn about in the next section. Here, you learn how to use the single quote to avoid expanding a variable in a shell script. An unexpanded variable maintains its original form in the output.
In the following examples, the double quotes in the preceding examples have been changed to single quotes:
pdksh and bash:var='test string'newvar='Value of var is $var'echo $newvartcsh:set var = 'test string'set newvar = 'Value of var is ...
Read now
Unlock full access