2016-05-17 18:06 by pursuer.chen, 92 阅读, 0 评论, 收藏, 编辑
介绍
cat命令经常会用来查看一个文件的内容,并且结合它本身的一些参数经常可以用来做一些特殊的内容处理。
参数
Usage: cat [OPTION]... [FILE]... Concatenate FILE(s), or standard input, to standard output. -A, --show-all 等同于使用参数-vET -b, --number-nonblank 针对非空行显示行号 -e 等同于使用参数 -vE -E, --show-ends 每行以$结尾
-n, --number 每行都显示行号 -s, --squeeze-blank 将连续的多个空行以显示一个空行 -t 等同于使用参数 -vT -T, --show-tabs 制表符(tab)以^I符合代替 -u (ignored) -v, --show-nonprinting use ^ and M- notation, except for LFD and TAB --help display this help and exit --version output version information and exit With no FILE, or when FILE is -, read standard input. Examples: cat f - g Output f's contents, then standard input, then g's contents. cat Copy standard input to standard output.
1.查看多个文件内容
2.显示行号
3.压缩空行
4.不显示空行
总结
本文转自pursuer.chen(陈敏华)博客园博客,原文链接:http://www.cnblogs.com/chenmh/p/5489850.html,如需转载请自行联系原作者