怎么样把man手册的内容保存到某个文件里面

发表于:2007-07-04来源:作者:点击数: 标签:

  当需要把man页面打印到打印机,或者在其它的编译器里面查看man页面。只需要使用以下的命令:
  man command | col -b > output.txt
  如,要把ls命令的man页输出到ls.txt文件,只需要:
  man ls | col -b > ls.txt

原文转自:http://www.ltesting.net