时间:2021-05-22
linux系统内置命令可以通过以下两种方式查询:“cat --help” 或者“man cat”。
cat命令的常用选项和官方解释如下:
cat file_name 显示文件全部内容
cat -b file_name 显示文件非空行内容
cat -E file_name 在文件每行末尾显示$,常用于管道功能
cat -n file_name 显示内容和行号
Usage: cat [OPTION]... [FILE]...Concatenate FILE(s) to standard output.With no FILE, or when FILE is -, read standard input. -A, --show-all equivalent to -vET -b, --number-nonblank number nonempty output lines, overrides -n -e equivalent to -vE -E, --show-ends display $ at end of each line -n, --number number all output lines -s, --squeeze-blank suppress repeated empty output lines -t equivalent to -vT -T, --show-tabs display TAB characters as ^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 exitExamples: cat f - g Output f's contents, then standard input, then g's contents. cat Copy standard input to standard output.GNU coreutils online help: <http://modates renaming, removal and creation.GNU coreutils online help: <http://www.gnu.org/software/coreutils/>Full documentation at: http://www.gnu.org/software/coreutils/tail搭配管道使用更佳
此外,这三个命令常常与管道功能搭配,用于文件内容的操作,例如:
对data.txt中的数据进行排序:cat data.txt | sort
对data.txt中的内容匹配:cat data.txt | grep 'a'
输出data.txt中的非空行数:cat -b data.txt | wc -l
总结
到此这篇关于Linux文本查看命令及其选项详解(cat,head,tail)的文章就介绍到这了,更多相关Linux文本查看命令及其选项内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Linux系统中查看文件内容时,可以使用cat命令来查看,但是cat命令一般只适合查看文件内容较少的文件。该怎么使用cat命令呢?下面我们就来看看详细的教程。1
head和tail是一组想对应的命令,默认分别显示文件的开头和末尾10行记录。headhead命令可以将一段文本的开头一部分输出到标准输出。head命令既可以处
思路:通过head和tail指令搭配,head指令查看前面多少行,tail指令查看后面多少行,举例:某log日志有很多很多行,我们获取他的第40行的数据,思路就
tail命令也是一个非常常用的文件查看类的命令,今天就为大家介绍下Linuxtail命令的用法。更多Linux命令详情请看:Linux命令速查手册Linuxta
在日常工作中,我们经常需要查看日志,比如可以通过tail命令实时查看日志,也可以通过cat等命令查看日志信息。但现在我们要讨论的是,如何从日志中通过关键字过滤出