一次显示整个文件
-n:显示行号
-b :和 -n 相似,只不过对于空白行不编号
-s:当遇到有连续两行以上的空白行,就代换为一行的空白行
-E显示换行符
[root@localhost ~]# cat haha.txt -n 1 /usr/bin/cp 2 3 4 5 /usr/bin/gzip [root@localhost ~]# cat haha.txt -b 1 /usr/bin/cp 2 /usr/bin/gzip [root@localhost ~]# cat haha.txt -bs 1 /usr/bin/cp 2 /usr/bin/gzip [root@localhost ~]# cat haha.txt -bsE 1 /usr/bin/cp$ $ 2 /usr/bin/gzip$