一.时间日期类
1.cal 当前月的日历
cal 2020 输出整年的日历
2.date + “%Y-%m-%d %H:%M:%S"
date -s "2020-1-1 11:11:11" 设置系统当前时间
二.文件搜索
1.find [搜索范围] [-name/-user/-size]
find /etc -name xxx/yyy 按照文件名
find /etc -size +/-200M 按照文件大小
find -opt -user -root 按照用户
2.ls -lh展示数据人性化
3.locate + filename 第一次运行时要使用updatedb创建locate数据库
4.which+命令 可以查看指令在那个目录下
5.grep 过滤查找 管道符“|”
cat hello.txt | grep -n "yes" 显示所查询的信息的行号
grep -n "yes" /home/hello.txt
- i 忽略大小写
三.文件压缩和解压
1.gzip 压缩 gunzip 解压文件
2.zip/unzip 压缩解压文件夹
zip -r 递归压缩目录
zip -r myhome.zip /home/ 将home目录及文件都压缩
unzip -d /opt/temp /home/myhome.zip 将temp解压到myhome.zip
3.tar [选项] 压缩后内容 tar.gz /要压缩的具体文件
-zxvf压缩
-zcvf解压