Linux 常用命令
Posted g2zh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 常用命令相关的知识,希望对你有一定的参考价值。
一、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为分隔符:
以空格分隔符示例:
只支持单个分隔符:
以上是关于Linux 常用命令的主要内容,如果未能解决你的问题,请参考以下文章
markdown [Docker] Docker片段列表和命令#linux #docker #snippets
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段