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

每30秒运行一下shell脚本

时间:2016-09-25 18:48:13      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

cd /usr/local/sbin/     //存放shell脚本 目录。

vim guoguosql.sh      //每30秒运行一个php文件。   文件路径为 vim /home/wwwroot/www/domain/huitiao/web/sql.php

#! /bin/bash
while :; do
        curl http://127.0.0.1:82/sql.php
        sleep 30
done

sh /usr/local/sbin/guoguosql.sh &    //运行 放入后台运行

vim /etc/rc.d/rc.local       //加入开机启动  在最后加入:

sh /usr/local/sbin/guoguosql.sh &  

停止shell

[root@zh-19-46 sbin]# ps aux|grep guoguosql
root 22899 0.0 0.0 106072 1316 pts/0 S 17:36 0:00 sh /usr/local/sbin/guoguosql.sh
root 33419 0.0 0.0 103316 908 pts/0 S+ 17:49 0:00 grep guoguosql

kill 22899

每30秒运行一下shell脚本

标签:

原文地址:http://www.cnblogs.com/carbon3/p/5906437.html

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