1 显示磁盘空间调用命令

 

 df -h | grep "/$"|awk '{print $5}'|sed 's/%//g' 

 grep "/$" 的意思是匹配以什么结尾,这里是匹配/为结尾的行

2 在这个文件的最后一列前加字符,用AWK 实现,注意this 要用双引号引起来

  

[root@zabbix-server ~]# cat 2.txt

xxx   24  45

[root@zabbix-server ~]# awk '{print "this" $NF}' 2.txt

this45

3 常用的命令

 

tail /usr/local/tomcat/logs/catalina.out –f   Java动态查看日志

bash -x rsync_all_receive.sh 脚本调试命令,查看脚本的执行过程

bash -n rsync_all-receive.sh 脚本调试命令,查看脚本是否有错误信息

find /usr/local/tomcat/webapps/www/ -name "ReceiveLineDateDao.class"

grep -R "C 客登录接口" /usr/local/tomcat/logs/catalina.out  - R 递归搜索命令

tail -f access.log

tail -f access.log -n 500 查看末尾500行