Linux 常用命令(三)

时间:2021-06-27 10:51:55

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

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

  -N 显示行号Linux 常用命令(三)

二、head  --output the first  part of files

  默认显示文件前10行

  -n:显示前n行Linux 常用命令(三)

  -v--verbose:开头显示文件名Linux 常用命令(三)

三、tail  --output the last part of files 

  默认显示最后10行

  -n:显示最后n行

  -v:显示文件名

  -f:随时显示追加的内容Linux 常用命令(三)

  Linux 常用命令(三)Linux 常用命令(三)

 

四、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

  示例:Linux 常用命令(三)

  显示第一行第二个0

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

  显示不可见字符:Linux 常用命令(三)

    Linux 常用命令(三)

  cut默认以tab为分隔符:Linux 常用命令(三)

  以空格分隔符示例:Linux 常用命令(三)

  只支持单个分隔符:Linux 常用命令(三)