标签:shel
1 显示磁盘空间调用命令
df -h | grep "/$"|awk ‘{print $4}‘|sed ‘s/%//g‘
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
标签:shel
原文地址:http://passwd.blog.51cto.com/615416/1813955