npc.1: ASCII bytes

This commit is contained in:
Emma Tebibyte 2024-03-27 00:16:15 -06:00
parent 3cb37d830a
commit d3bfc7b1f5
Signed by: emma
GPG Key ID: 06FA419A1698C270
1 changed files with 5 additions and 5 deletions

View File

@ -21,9 +21,9 @@ Print normally non-printing characters.
The program reads from standard input and writes to standard output, replacing The program reads from standard input and writes to standard output, replacing
non-printing characters with printable equivalents. Control characters print as non-printing characters with printable equivalents. Control characters print as
a carat (“^”) followed by the character “@” through “_” corresponding to the a carat ('^') followed by the character '@' through '_' corresponding to the
character replaced (e.g. control-X becomes “^X”). The delete character (0x7F) character replaced (e.g. control-X becomes '^X'). The delete character (0x7F)
becomes “^?”. Characters with the high bit set (>127) are printed as “M-” becomes '^?'. Characters with the high bit set (>127) are printed as 'M-'
followed by the graphical representation for the same character without the followed by the graphical representation for the same character without the
high bit set. high bit set.
@ -31,12 +31,12 @@ high bit set.
.B -e .B -e
.RS .RS
Prints a currency sign (“$”) before each line ending. Prints a currency sign ('$') before each line ending.
.RE .RE
.B -t .B -t
.RS .RS
Prints tab characters as “^I” rather than a literal horizontal tab. Prints tab characters as '^I' rather than a literal horizontal tab.
.RE .RE
.SH DIAGNOSTICS .SH DIAGNOSTICS