码迷,mamicode.com
首页 > 系统相关 > 详细

shell 练习

时间:2016-07-11 01:32:17      阅读:215      评论:0      收藏:0      [点我收藏+]

标签: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




shell 练习

标签:shel

原文地址:http://passwd.blog.51cto.com/615416/1813955

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!