There are perhaps 5% of the population that simply *can't* think. There are another 5% who *can*, and *do*. The remaining 90% *can* think, but *don't*.
Referring the one-liner #31 and its info about man commands, here's a related one-liner that is helpful:
$ man keyword | col -bx > keyword.m
will filter the man output through the col tool, and the -bx options cause all the control characters (such as Ctrl-H in particular) to be stripped out. This makes the output much more readable on many terminals. I've used this trick a lot on many versions of UNIX for years, and even on Linux in its earlier versions. Nowadays, though, I've seen that on many modern Linux distributions, the man output does not have those control characters that mess up the display, or, it is automatically piped to the less command, which seems to filter them out. However, this command may still be useful if you want to redirect the man output to a file as in the example I gave above, because then you can open the file in a text editor like vim and not have the screen messed up by the control characters. The main control character which is used in man output is Ctrl-H for backspace, because man output uses that to repeat characters (of a word) many times with backspaces in between the repetitions, which cause bold text output on printers, but messes up screen displays.
I am being sponsored by Syntress! They bought me an amazing dedicated server to run catonmat on. If you're looking web services, I highly recommend the Syntress guys!
Education Sponsors
I am being sponsored by A-Writer! If you ever need help with essay writing, look no further than A-Writer! They will help you with your writing in as quickly as 3 hours!
Nice post, Peteris.
Referring the one-liner #31 and its info about man commands, here's a related one-liner that is helpful:
$ man keyword | col -bx > keyword.m
will filter the man output through the col tool, and the -bx options cause all the control characters (such as Ctrl-H in particular) to be stripped out. This makes the output much more readable on many terminals. I've used this trick a lot on many versions of UNIX for years, and even on Linux in its earlier versions. Nowadays, though, I've seen that on many modern Linux distributions, the man output does not have those control characters that mess up the display, or, it is automatically piped to the less command, which seems to filter them out. However, this command may still be useful if you want to redirect the man output to a file as in the example I gave above, because then you can open the file in a text editor like vim and not have the screen messed up by the control characters. The main control character which is used in man output is Ctrl-H for backspace, because man output uses that to repeat characters (of a word) many times with backspaces in between the repetitions, which cause bold text output on printers, but messes up screen displays.
- Vasudev
Reply To This Comment