标签:
cat命令的功能是连接文件或标准输入并打印,今天就为大家介绍下Linux中的cat命令。
更多Linux命令详情请看:Linux命令速查手册
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 之外
1)显示文件内容
#cat file1 This is a test file. Welcome to linuxdaxue.com! This is cat command test.
2)把file1内容加上行号输入到file2中
#cat -n file1 > file2 [root@/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正好相反,用来将文件从后向前输出。
以下是两个命令的区别
[root@/root/linuxdaxue.com/testDir]#cat file1 This is a test file. Welcome to linuxdaxue.com! This is cat command test. [root@/root/linuxdaxue.com/testDir]#tac file1 This is cat command test. Welcome to linuxdaxue.com! This is a test file.
好了,有关Linux cat命令的内容就为大家介绍到这里,更多Linux命令详情请看:Linux命令速查手册
标签:
原文地址:http://www.cnblogs.com/waitig/p/5880853.html