首页 > 代码库 > 每30秒运行一下shell脚本
每30秒运行一下shell脚本
cd /usr/local/sbin/ //存放shell脚本 目录。
vim guoguosql.sh //每30秒运行一个php文件。 文件路径为 vim /home/wwwroot/www/domain/huitiao/web/sql.php
#! /bin/bashwhile :; do curl http://127.0.0.1:82/sql.php sleep 30done
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脚本
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。