首页 > 技术文章 > Linux 常用命令(三)

gaogzhen 2018-11-18 10:19 原文

一、less  --分页查看文件:方面查阅(编辑)大文件

  说明:支持方向键盘和鼠标向上向下浏览

  -N 显示行号

二、head  --output the first  part of files

  默认显示文件前10行

  -n:显示前n行

  -v--verbose:开头显示文件名

三、tail  --output the last part of files 

  默认显示最后10行

  -n:显示最后n行

  -v:显示文件名

  -f:随时显示追加的内容

  

 

四、cut  --remove sections from each line of files

  -b  --bytes:select only these bytes

  -c  --character:select only these characters

  

  -d, --delimiter=DELIM
  use DELIM instead of TAB for field delimiter

  -f, --fields=LIST
  select only these fields; also print any line that contains no
  delimiter character, unless the -s option is specified

  示例:

  显示第一行第二个0

[root@gaogzhen gaogzhen]# head -1 /etc/passwd|cut -d : -f4
0

  显示不可见字符:

    

  cut默认以tab为分隔符:

  以空格分隔符示例:

  只支持单个分隔符:

 

推荐阅读