需求:最近用php做了一个功能需要用shell定时跑,但是这个数据很大,php一次执行不完,所以需要分页。那么问题来了,由于并不知道要分多少页面。shell脚本的crontab并不太好设定

那么我就用shell写了个程序,来调用这个分页的php接口,然后用crontab执行这个shell。好了废话少说,直接上代码

#!/bin/bash

bindir="./bin"
dels=${bindir}"/*.sh"
rm -rf $dels

if [ $1 -gt 0 -a $2 -gt 0 ];then
urls="http://localhost/views/count/type/$1/count/$2"
result=$(curl -s $urls)
#要将$a分割开,可以这样:
OLD_IFS="$IFS"
IFS=","
arr=($result)
IFS="$OLD_IFS"
i=0
for s in ${arr[@]}
do
#创建文件到bin下面然后批量执行
	((i++))
	str="#!/bin/bash "
	strs=" curl -s \"$s\""
	echo $str >> ${bindir}"/$i.sh"
	echo $strs >> ${bindir}"/$i.sh"
	#curl -s "$s"
done
chmod 777 -R $bindir
#读取文件夹下所有的文件并执行
for fileAll in ${bindir}/*;do
	tempFile=`basename $fileAll`
	echo ${bindir}"/"${tempFile}
	sh ${bindir}"/"${tempFile}
done

fi

把上面的代码保存成 do.sh

# sh do.sh 1 250
success : 36 S
简单说明一下 首先我们要给do.sh设置可执行权限  在当前文件下建立一个bin文件夹,并可写。

这个do.sh会在bin目录下生成很多sh文件并分批执行

Comments are closed.

Post Navigation