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.
This commit is contained in:
Omar Polo 2021-07-21 07:56:41 +00:00
parent 3e0164f4c3
commit af5f9b271e
1 changed files with 1 additions and 1 deletions

2
gmid.1
View File

@ -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