diff options
author | Omar Polo <op@omarpolo.com> | 2021-07-21 07:56:41 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-07-21 07:56:41 +0000 |
commit | af5f9b271e852c641ff6c1d226e42d98f4182f25 (patch) | |
tree | bb81d4c9d40e7e4543a57c3bf642b2957f21e0b2 | |
parent | 3e0164f4c31a96455a71e87c071ffedffca9dfa5 (diff) |
use \e instead of \\ as a mean to escape \
Just read in a mail from Ingo to tech@
> Using \\ outside macro definitions (i.e., outside the bodies of roff(7)
> .de and similar requests) is almost always wrong even in low-level roff
> code, and \\ must never be used in manual pages.
-rw-r--r-- | gmid.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -612,7 +612,7 @@ and enable CGI scripts inside $ mkdir docs/cgi $ cat <<EOF > docs/cgi/hello #!/bin/sh -printf "20 text/plain\\r\\n" +printf "20 text/plain\er\en" echo "hello world" EOF $ chmod +x docs/cgi/hello |