将Linux的man命令输出结果保存到文件的方法
介绍将Linux的man命令输出结果写入文件的方法。
环境
- OS:CentOS Linux release 7.7.1908
[root@CENTOS7 ~]# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
[root@CENTOS7 ~]#
将man命令的输出结果写入文件中(使用col命令去除控制字符)。
将man命令的输出通过管道传递给col -bfx,并将结果保存到文件中。
[root@CENTOS7 ~]# man top | col -bfx > top.txt
[root@CENTOS7 ~]#
CentOS7 在中文中是这样表达的:
在CentOS 7中
man top | col -bfx > top.txt 和 man top > top2.txt 的结果是相同的。
[root@CENTOS7 ~]# man top | col -bfx > top.txt
[root@CENTOS7 ~]# man top > top2.txt
[root@CENTOS7 ~]# diff top.txt top2.txt
[root@CENTOS7 ~]#
以上