tree:查看目录权限
mkdir:创建目录
-p = parent 父级目录
-v = verbose 详细过程
mkdir -pv /mnt/test/{x/m,y} mkdir -pv /mnt/test/{a,d}_{b,c}
命令行展开:
第一个会创建目录:/mnt/test/x/m 和 /mnt/test/y
第二个会创建目录:/mnt/test/a_b,/mnt/test/a_c,/mnt/test/d_b,/mnt/test/d_c
touch:
主要用途是改变文件的时间戳
-m:modify 修改时间
-a:access 访问时间
-t:设置时间
可创建文件:touch a 则创建文件a
查看文件:
cat
-n:显示行号
-E:显示行末尾字符
more:分屏显示
less:分屏显示
head:显示前几行
tail:显示后几行
-f:调试时候会用到,刚写入文件的内容 立马显示
cut:
-d:分隔符
-f:第几个字段
cut -d ‘ ‘ -f 3-4 /opt/logs/log-2017-05-04.php 2017-05-04 17:17:39 2017-05-04 17:17:39 2017-05-04 17:18:09 2017-05-04 17:18:09
sort
-f:忽略大小写
-u:重复不显示
-n:以数字形式排序
-r:倒序
-t:字段分隔符
-k:字段数
sort -r -t ‘ ‘ -k 4 /opt/logs/log-2017-05-04.php ERROR - 2017-05-04 17:18:09 --> Severity: Warning --> stream_select(): unable to select [4]: Interrupted system call (max_fd=5) ERROR - 2017-05-04 17:18:09 --> Severity: Warning --> stream_select(): unable to select [4]: Interrupted system call (max_fd=5) ERROR - 2017-05-04 17:17:39 --> Severity: 8192 --> mysql_pconnect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead ERROR - 2017-05-04 17:17:39 --> Severity: 8192 --> mysql_pconnect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead
uniq
-d:只显示重复行
-D:显示重复行(多行)
-c:重复次数
\rm:还原rm命令最原始的作用
原文地址:http://13023497.blog.51cto.com/13013497/1962800