首页 > 代码库 > linux常用命令--cat

linux常用命令--cat

cat 可以将文件输出到屏幕或者 > 输出到文件

常用参数:

cat -n filename 将文件filename 编号显示

如:

cat -n test.txt
1 1@qq.com
2 2@qq.com
3 3@qq.com
4 4@qq.com
5 5@qq.com
6 6@qq.com

 

cat -b filename 编号显示,空白行不编号

 

再如:

cat -n textfile1 > textfile2 讲textfile1内容加编号之后存到textfile2中

 

cat /dev/null > filename 清空文件内容