From 1fe43349199e3c853b808e968a32c3473424fc4d Mon Sep 17 00:00:00 2001 From: Adrian Sieber <36796532+ad-si@users.noreply.github.com> Date: Sun, 11 Nov 2018 20:18:51 +0000 Subject: [PATCH] List special characters, link to bash manual --- SC1117.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SC1117.md b/SC1117.md index 16dbdf0..6071cd3 100644 --- a/SC1117.md +++ b/SC1117.md @@ -28,7 +28,11 @@ Instead of relying on this implicit fallback, you should escape the backslash ex ### Exceptions: -None. This is a stylistic issue which can be [[ignore]]d. But can you name the 5 characters that *are* special when escaped in double quotes? +None. This is a stylistic issue which can be [[ignored]]. But can you name the 5 characters that *are* special when escaped in double quotes? + +They are $, `, ", \\, or newline. More infos are available in the [bash manual]. + +[bash manual]: https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html ### Retired: