Je vais vous montrer comment sortir le résultat de sortie de la commande Linux man
dans un fichier.
[root@CENTOS7 ~]# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
[root@CENTOS7 ~]#
commande man | col -bfx> fichier
[root@CENTOS7 ~]# man top | col -bfx > top.txt
[root@CENTOS7 ~]#
Dans CentOS 7
man top | col -bfx > top.txt
Avec le résultat de
man top > top2.txt
Le résultat est le même.
[root@CENTOS7 ~]# man top | col -bfx > top.txt
[root@CENTOS7 ~]# man top > top2.txt
[root@CENTOS7 ~]# diff top.txt top2.txt
[root@CENTOS7 ~]#
c'est tout