在业务开发过程中,经常会在后台写一些shell脚本处理数据,但估计很多人不知道shell脚本也可以支持多线程,而且非常简单。本篇文章主要就是介绍shell实现多进程以及进程数量控制。
#!/bin/bash
#判断是否有参数
if [ $# != 1 ] ;then
echo "The parameters you enter is not correct !";
exit -1;
fi
#循环读出URL并判断状态码
while read line
do
{
isok=`curl -I -o /dev/null -s -w %{http_code} $line`
if [ "$isok" = "200" ]; then
echo $line "OK"
else
echo $line "no"
fi
}
done $1
echo "执行结束"
#!/bin/bash
#判断是否有参数
if [ $# != 1 ] ;then
echo "The parameters you enter is not correct !";
exit -1;
fi
#循环读出URL并判断状态码
while read line
do
{
isok=`curl -I -o /dev/null -s -w %{http_code} $line`
if [ "$isok" = "200" ]; then
echo $line "OK"
else
echo $line "no"
fi
}
}
done $1
wait
echo "执行结束"
#!/bin/bash
#允许的进程数
THREAD_NUM=200
#定义描述符为9的管道
mkfifo tmp
exec 9>tmp
#预先写入指定数量的换行符,一个换行符代表一个进程
for ((i=0;i$THREAD_NUM;i++))
do
echo -ne "\n" 1>9
done
if [ $# != 1 ] ;then
echo "The parameters you enter is not correct !";
exit -1;
fi
while read line
do
{
#进程控制
read -u 9
{
#isok=`curl -I -o /dev/null -s -w %{http_code} $line`
if [ "$isok" = "200" ]; then
echo $line "OK"
else
echo $line "no"
fi
echo -ne "\n" 1>9
}
}
done $1
wait
echo "执行结束"
rm tmp