Single-Quotes
When shell encounters a single-quote ('
), it starts creating a string using these rules:
Another single-quote ends the contents and cannot be escapaed (see below rule)
Escape sequences are not expanded (e.g.,
\t
is not translated into a literalTAB
)Variables are not expanded (e.g.,
$foo
remains$foo
)Command substitutions are not performed (e.g.,
$(date)
and`date`
remain unchanged)
For example:
Produces:
Last updated