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

写过的一些shell脚本总结

时间:2015-07-30 18:31:44      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

每天晚上自动检查更新

#!/bin/sh
#auto gamedown2 version
DATE=`/bin/date +%m%d`
COUNT=`curl ‘http://11.1.1.1/index.php?m=version&c=auto&a=zheng_count‘`
var=`expr $COUNT / 10` 
for((i=1;i<$var;i++))
do
	#sleep 5s
	curl ‘http://1.1.1.1/index.php?m=version&c=auto&a=version_now&page=‘$i
	echo $i --- `/bin/date +%k:%M:%S` >> /root/shell/auto/logs/$DATE.log
done

 每天零点 1 分执行

1 0 * * * /root/shell/auto/suto.sh

 

写过的一些shell脚本总结

标签:

原文地址:http://www.cnblogs.com/mr-amazing/p/4689839.html

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