查看文件及内容处理命令 cat tac less head tail cut

Posted jks巴顿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看文件及内容处理命令 cat tac less head tail cut相关的知识,希望对你有一定的参考价值。

cat 查看文件内容

  1. [[email protected] tmp]# cat 2.txt
  2. 1234

-n 查看行号

  1. [[email protected] tmp]# cat -n 2.txt
  2. ?????1 1234
  3. ?????2 1
  4. ?????3 2
  5. ?????4 3
  6. ?????5 4
  7. ?????6 5

tac 倒过来显示文件内容

  1. [[email protected] tmp]# tac 2.txt
  2. 5
  3. 4
  4. 3
  5. 2
  6. 1
  7. 1234

less 分页显示文件内容

  1. history | less
  2. 87 ls
  3. ???88 cd /class
  4. ???89 ls
  5. ???90 cd 01
  6. ???91 ls
  7. ???92 vim n
  8. ???93 vim number.py
  9. ???94 python
  10. ???95 ls
  11. ???96 vim number.py
  12. ???97 vim age.py
  13. ???98 python age.py
  14. ???99 vim age.py
  15. ??100 python age.py
  16. ??101 vim age.py
  17. ??102 python age.py
  18. ??103 vim age.py
  19. ??104 python age.py

head 取文件前几行

-n* 取文件前*行 默认取10行

  1. [[email protected] tmp]# head -n3 2.txt
  2. 1234
  3. 1
  4. 2

tail 取文件后几行

-n* 取文件后*行

  1. [[email protected] tmp]# tail -n2 2.txt
  2. 4
  3. 5

Cut

取列

-d 指定分隔符

-f 取列

-f3,5 取第三列和第五列

-f3-5 取第三列到第五列

  1. [[email protected] tmp]# cat 3.txt
  2. i am love,oldboy and oldgril id
  3. [[email protected] tmp]# cut -d " " -f2,4 3.txt
  4. am and

以上是关于查看文件及内容处理命令 cat tac less head tail cut的主要内容,如果未能解决你的问题,请参考以下文章

Linux命令 查看文件 cat tac more less tail

查看文件内容的命令cat,tac,more,less,head,tail

linux命令详解

linux基础命令-文件查看类命令cat/tac/more/less/tail/head

文本处理工具cat;tac;ver;less;more;head;tail;wc;sort;uniq

linux常用命令-查看文本/cat,tac,more,less,head,tail