s/`/\`/ for backquotes used in command substitution, for

proper rendering in UTF-8.
This commit is contained in:
Michael Kerrisk 2008-06-05 12:26:22 +00:00
parent bcf8b3ac62
commit 26868e5b26
5 changed files with 7 additions and 7 deletions

View File

@ -213,7 +213,7 @@ q DECLL Set keyboard LEDs.
r DECSTBM Set scrolling region; parameters are top and bottom row.
s ? Save cursor location.
u ? Restore cursor location.
` HPA Move cursor to indicated column in current row.
\` HPA Move cursor to indicated column in current row.
.TE
.PP
.B ECMA-48 Set Graphics Rendition

View File

@ -77,7 +77,7 @@ which is run during the Linux system start-up sequence:
fi
chmod 600 $random_seed
poolfile=/proc/sys/kernel/random/poolsize
[ \-r $poolfile ] && bytes=`cat $poolfile` || bytes=512
[ \-r $poolfile ] && bytes=\`cat $poolfile\` || bytes=512
dd if=/dev/urandom of=$random_seed count=1 bs=$bytes
.fi
@ -92,7 +92,7 @@ run during the Linux system shutdown:
touch $random_seed
chmod 600 $random_seed
poolfile=/proc/sys/kernel/random/poolsize
[ \-r $poolfile ] && bytes=`cat $poolfile` || bytes=512
[ \-r $poolfile ] && bytes=\`cat $poolfile\` || bytes=512
dd if=/dev/urandom of=$random_seed count=1 bs=$bytes
.fi
.SS "/proc Interface"

View File

@ -20,7 +20,7 @@ to determine the colors in which the filenames are to be displayed.
This environment variable is usually set by a command like
.RS
eval `dircolors some_path/dir_colors`
eval \`dircolors some_path/dir_colors\`
.RE
found in a system default shell initialization file, like

View File

@ -1850,7 +1850,7 @@ the internal format, with sub-fields terminated by null bytes ('\\0'),
so you
may find that things are more readable if you use \fIod \-c\fP or \fItr
"\\000" "\\n"\fP to read them.
Alternatively, \fIecho `cat <file>`\fP works well.
Alternatively, \fIecho \`cat <file>\`\fP works well.
This manual page is incomplete, possibly inaccurate, and is the kind
of thing that needs to be updated very often.

View File

@ -117,12 +117,12 @@ one can force the classical behavior by setting
E.g., where old scripts have
.br
.nf
rm `find . \-name "*~"`
rm \`find . \-name "*~"\`
.fi
new scripts require
.br
.nf
rm \-f nosuchfile `find . \-name "*~"`
rm \-f nosuchfile \`find . \-name "*~"\`
.fi
to avoid error messages from
.I rm