Mythryl >
possibly taken from the mailing list, though I have no reference so this might be from a private email
To display a character, you can specify its ASCII value with \nnn. e.g.:
\n
or \010 - newline\t
or \009 - tab\r
or \013 - carriage return\a
or \007 - alert\b
or \008 - backspace\f
or \012 - formfeed-
\v
or \011 - vertical tab
printf "\070"; # => # F
Last updated 2020-05-06 at 15:29:13
ported from offline notes