Linux命令详解之—cat命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux命令详解之—cat命令相关的知识,希望对你有一定的参考价值。
cat命令的功能是连接文件或标准输入并打印,今天就为大家介绍下Linux中的cat命令。
更多Linux命令详情请看:Linux命令速查手册
Linux 的cat命令通常用来显示文件内容,也可以用来将几个文件连接起来显示,或者从标准输入读取内容并显示,常与重定向符号配合使用。
一、Linux cat命令语法格式
cat [OPTION]... [FILE]..
参数说明:
-A, --show-all 等价于 -vET -b, --number-nonblank 对非空输出行编号 -e 等价于 -vE -E, --show-ends 在每行结束处显示 $ -n, --number 对输出的所有行编号,由1开始对所有输出的行数编号 -s, --squeeze-blank 有连续两行以上的空白行,就代换为一行的空白行 -t 与 -vT 等价 -T, --show-tabs 将跳格字符显示为 ^I -u (被忽略) -v, --show-nonprinting 使用 ^ 和 M- 引用,除了 LFD 和 TAB 之外
二、Linux cat命令使用实例
1)显示文件内容
#cat file1 This is a test file. Welcome to linuxdaxue.com! This is cat command test.
2)把file1内容加上行号输入到file2中
#cat -n file1 > file2 [[email protected]/root/linuxdaxue.com/testDir]#cat file2 1 This is a test file. 2 Welcome to linuxdaxue.com! 3 This is cat command test.
3)清空file2内容
#cat /dev/null > file2 #cat file2 #
4)Linux tac命令
tac就是cat反过来,功能也与cat正好相反,用来将文件从后向前输出。
以下是两个命令的区别
[[email protected]/root/linuxdaxue.com/testDir]#cat file1 This is a test file. Welcome to linuxdaxue.com! This is cat command test. [[email protected]/root/linuxdaxue.com/testDir]#tac file1 This is cat command test. Welcome to linuxdaxue.com! This is a test file.
好了,有关Linux cat命令的内容就为大家介绍到这里,更多Linux命令详情请看:Linux命令速查手册
- 版权声明:本站原创文章,于3个月前,由Linux大学(Linuxdaxue.com)发表,共 1015字。
- 转载请注明:Linux命令详解之—cat命令 | Linux大学
以上是关于Linux命令详解之—cat命令的主要内容,如果未能解决你的问题,请参考以下文章