在業(yè)務開發(fā)過程中,經常會在后臺寫一些shell腳本處理數據,但估計很多人不知道shell腳本也可以支持多線程,而且非常簡單。本篇文章主要就是介紹shell實現多進程以及進程數量控制。
#!/bin/bash
#判斷是否有參數
if [ $# != 1 ] ;then
echo "The parameters you enter is not correct !";
exit -1;
fi
#循環(huán)讀出URL并判斷狀態(tài)碼
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 "執(zhí)行結束"
#!/bin/bash
#判斷是否有參數
if [ $# != 1 ] ;then
echo "The parameters you enter is not correct !";
exit -1;
fi
#循環(huán)讀出URL并判斷狀態(tài)碼
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 "執(zhí)行結束"
#!/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 "執(zhí)行結束"
rm tmp