linux命令--cat

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux命令--cat相关的知识,希望对你有一定的参考价值。

cat作用:1.输出文本内容到屏幕   2.输出文本内容到另外一个文件

参数说明:

-n:对所有行进行编号

-b:不对空白行编号

-s:连续多行空白行显示为单行

举例说明:

---------------------------------------------------

查看1.txt文本内容 

[[email protected] tools]# cat 1.txt
           c

           d
           e


           f

 

           g

---------------------------------------------------

查看1.txt文本内容,并对所有行进行编号

[[email protected] tools]# cat -n 1.txt
          1 c
          2
          3 d
          4 e
          5
          6
          7 f
          8
          9
          10
          11 g

-----------------------------------------------------

查看1.txt文本内容,只对非空白行进行编号

[[email protected] tools]# cat -b 1.txt 
          1 c

          2 d
          3 e


          4 f

 

          5 g

-----------------------------------------------------

查看1.txt文本内容,连续多行空白行显示为一行

[[email protected] tools]# cat -s 1.txt
          c

          d
          e

          f

          g

-----------------------------------------------------

将1.txt文本内容,输出到2.txt中,查看2.txt内容

[[email protected] tools]# cat 1.txt > 2.txt
[[email protected] tools]# cat 2.txt
          c

          d
          e


          f

 

          g

-----------------------------------------------------

 

以上是关于linux命令--cat的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu 解压zip分卷

输出重定向

Linux汇总一——Linux程序管理,Linux终端,Linux命令格式命令类型及Linux命令帮助

linux删除命令rm -rf(linux删除命令行)

linux查看路径命令

linux查看历史命令记录及时间(linux查看历史命令执行时间)