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