查看文件及内容处理命令 cat tac less head tail cut
Posted jks巴顿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看文件及内容处理命令 cat tac less head tail cut相关的知识,希望对你有一定的参考价值。
cat 查看文件内容
- [[email protected] tmp]# cat 2.txt
- 1234
-n 查看行号
- [[email protected] tmp]# cat -n 2.txt
- ?????1 1234
- ?????2 1
- ?????3 2
- ?????4 3
- ?????5 4
- ?????6 5
tac 倒过来显示文件内容
- [[email protected] tmp]# tac 2.txt
- 5
- 4
- 3
- 2
- 1
- 1234
less 分页显示文件内容
- history | less
- 87 ls
- ???88 cd /class
- ???89 ls
- ???90 cd 01
- ???91 ls
- ???92 vim n
- ???93 vim number.py
- ???94 python
- ???95 ls
- ???96 vim number.py
- ???97 vim age.py
- ???98 python age.py
- ???99 vim age.py
- ??100 python age.py
- ??101 vim age.py
- ??102 python age.py
- ??103 vim age.py
- ??104 python age.py
head 取文件前几行
-n* 取文件前*行 默认取10行
- [[email protected] tmp]# head -n3 2.txt
- 1234
- 1
- 2
tail 取文件后几行
-n* 取文件后*行
- [[email protected] tmp]# tail -n2 2.txt
- 4
- 5
Cut
取列
-d 指定分隔符
-f 取列
-f3,5 取第三列和第五列
-f3-5 取第三列到第五列
- [[email protected] tmp]# cat 3.txt
- i am love,oldboy and oldgril id
- [[email protected] tmp]# cut -d " " -f2,4 3.txt
- am and
以上是关于查看文件及内容处理命令 cat tac less head tail cut的主要内容,如果未能解决你的问题,请参考以下文章
Linux命令 查看文件 cat tac more less tail
查看文件内容的命令cat,tac,more,less,head,tail
linux基础命令-文件查看类命令cat/tac/more/less/tail/head