Linux中的cat命令

cat命令的用途是连接文件或者标准输入并打印。这个命令经常用来显示文件内容,或者将几个文件连接起来显示,或者从标准输入读取内容并且显示,它经常与重定向符号配合使用。

命令格式:

cat   【选项】  【文件】

命令功能:
一次显示一个文件  cat  file

从键盘创建一个文件

将几个文件合并成为一个文件

使用实例:

(1)

把一个文件的内容加上行号输入到另外一个文件里面

[root@centos65 test]# cat -n test003.log > test002.log 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# cat test002.log
     1	nice to meet you!
-n 对所有行进行编号
(2)

将两个中的内容加上行号一起输入到第三个文件里

[root@centos65 test]# cat test002.log 
nice to meet you

hello world!


yum
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# cat test003.log 
nice to meet you!
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# cat test004.log 
[root@centos65 test]# 
[root@centos65 test]# 
[root@centos65 test]# cat -b test002.log test003.log > test004.log 
[root@centos65 test]# cat test004.log 
     1	nice to meet you

     2	hello world!


     3	yum
     4	nice to meet you!
-b  对空行进行编号

(3)反向示例

[root@centos65 test]# cat test004.log 
     1	nice to meet you

     2	hello world!


     3	yum
     4	nice to meet you!
[root@centos65 test]# tac test004.log 
     4	nice to meet you!
     3	yum


     2	hello world!

     1	nice to meet you



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值