bash:quotes
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:quotes [2019/12/07 12:00] – peter | bash:quotes [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 51: | Line 51: | ||
---- | ---- | ||
- | ===== Concatinating | + | ==== Escaping Quotes |
+ | |||
+ | Putting a **backslash** character **\** in front of a quote removes its special meaning. | ||
+ | |||
+ | This works inside double quotes, or in the absence of quotes. | ||
+ | |||
+ | It does not work inside single quotes. | ||
+ | |||
+ | ==== Example ==== | ||
+ | |||
+ | <code bash> | ||
+ | echo ' | ||
+ | echo " | ||
+ | echo $' | ||
+ | </ | ||
+ | |||
+ | * **1st line: | ||
+ | * **2nd line: | ||
+ | * **3rd line: | ||
+ | |||
+ | **$(...)**-style command substitutions are unique in that the quoting of their contents is completely independent to their surroundings. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Concatenating | ||
The various types of quotes can be combined, or concatenated, | The various types of quotes can be combined, or concatenated, | ||
Line 106: | Line 130: | ||
---- | ---- | ||
+ | |||
+ | ===== Prevent field splitting and ignore glob pattern characters ===== | ||
+ | |||
+ | <code bash> | ||
+ | cp $file $destination | ||
+ | cp -- " | ||
+ | </ | ||
+ | |||
+ | In this example, the double quotes protect the value of each parameter from undergoing word splitting or globbing should it happen to contain whitespace or wildcard characters (* or ? or [...]). | ||
+ | |||
+ | Without the quotes, a filename like hot stuff.mp3 would be split into two words, and each word would be passed to the cp command as a separate argument. | ||
+ | |||
+ | With the quotes, every character in the value of the filename parameter is treated literally, and the whole value becomes the second argument to the cp command. | ||
+ | |||
+ | <WRAP info> | ||
+ | When in doubt, always double-quote your parameter expansions. | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
===== Example - using back quotes within single quotes ===== | ===== Example - using back quotes within single quotes ===== |
bash/quotes.1575720054.txt.gz · Last modified: 2020/07/15 09:30 (external edit)