一、文件
改:vi、vim
查:dir、ls -l (查看文件大小,修改时间)、ls -lht(查看当前文件夹下的文件大小)、df -h(查看系统硬盘使用情况)、du -h(查看文件夹内的文件大小)、top (查看cpu使用情况)
进:cd
删除:rm -rf 文件
移动:mv 重命名:mv
复制:cp xx/. xx
sudo yum update //更新系统
二、xshell
传输文件
yum install lrzsz -y
查看是否完成
rpm -qa |grep lrzsz
提升文件权限
chmod +x build.sh
1.查看日志常用命令
tail:
-n 是显示行号;相当于nl命令;例子如下:
tail -100f test.log 实时监控100行日志
tail -n 10 test.log 查询日志尾部最后10行的日志;
tail -n +10 test.log 查询10行之后的所有日志;
head:
跟tail是相反的,tail是看后多少行日志;例子如下:
head -n 10 test.log 查询日志文件中的头10行日志;
head -n -10 test.log 查询日志文件除了最后10行的其他所有日志;
cat:
tac是倒序查看,是cat单词反写;例子如下:
cat -n test.log |grep "debug" 查询关键字的日志
查询日志中最后十行
cat hall_gate.log | tail -n 10
批量删除
find . -maxdepth 1 -regex ".*18.*" | xargs rm -rf
设置xshell传输文件
yum install lrzsz -y