How-to: Escape Characters, delimiters and Quotes

Quoting

Quoting is used to remove the special meaning of certain characters or words to the shell. Quoting can be used to disable special treatment for special characters, to prevent reserved words from being recognized as such, and to prevent parameter expansion.

Whenever you pass a variable to a command, you should probably quote it.

Each of the shell metacharacters has special meaning to the shell and must be quoted if it is to represent itself.

Escape Character

A non-quoted backslash \ is the Bash escape character. It preserves the literal value of the next character that follows, with the exception of newline. If a \newline pair appears, and the backslash itself is not quoted, the \newline is treated as a line continuation (that is, it is removed from the input stream and effectively ignored).

Single Quotes

Enclosing characters in single quotes (') preserves the literal value of every character within the quotes. A single quote may not occur between single quotes, even when preceded by a backslash.
$ MONTHVAR=January
$ echo 'The month is $MONTHVAR'
The month is $MONTHVAR

Double Quotes

Enclosing characters in double quotes (") preserves the literal value of all characters within the quotes, with the exception of $, `, and \ and, when history expansion is enabled, !. The characters $ and ` retain their special meaning within double quotes. The backslash retains its special meaning only when followed by one of the following characters: $, `, ", \, or newline.
If enabled, history expansion will be performed unless an ! appearing in double quotes is escaped using a backslash. The backslash preceding the ! is not removed.
Within double quotes, backslashes that are followed by one of these characters are removed. Backslashes preceding characters without a special meaning are left unmodified. A double quote may be quoted within double quotes by preceding it with a backslash.
The special parameters * and @ have special meaning when in double quotes.
$ MONTHVAR=January
$ echo "The month is $MONTHVAR"
The month is January

EOF Marker

End Of File is usually CTRL+D (^D) when input is from the keyboard.
If ^D doesn’t work, type 'stty -a' to see what the eof character is.

Related macOS commands

wooledge.org/Quotes - quoting in shell programming.
ht1528 - Enabling and using the 'root' user in macOS.


 
Copyright © 1999-2024 SS64.com
Some rights reserved