col [options]A postprocessing filter that handles reverse linefeeds and escape characters, allowing output from tbl (or nroff, occasionally) to appear in reasonable form on a terminal.
-bIgnore backspace characters; helpful when printing manpages.
-fProcess half-line vertical motions, but not reverse line motion. (Normally, half-line input motion is displayed on the next full line.)
-pPrint unknown escape sequences (normally ignored) as regular characters. This option can garble output, so its use is not recommended.
-xNormally, col saves printing time by converting sequences of spaces to tabs. Use -x to suppress this conversion.
Run file through tbl and nroff, then capture output on screen by filtering through col and more:
tblfile |nroff | col | more
Save manpage output in file.print, stripping out backspaces (which would otherwise appear as ^H):
manfile| col -b >file