perf:2026适配

This commit is contained in:
2026-06-01 02:35:09 +00:00
parent 6051cd9bb6
commit a2991bf26b
4 changed files with 11 additions and 8 deletions
+4 -5
View File
@@ -1,15 +1,14 @@
#!/bin/bash
wd="/home/oasis/dev_projects/wechatStep"
if [ "$#" -ne "1" ];then
echo "参数不合法"
exit 1
fi
base_num=$1 # 起始值
cd $wd
while read acct pwd
do
sleep_num=$$(( `shuf -i 1-100 -n` * 60 ))
echo sleop $sleep_num for random cheat >> ./logs
sleep_num=$(( $(shuf -i 1-100 -n1) * 60 ))
echo sleep $sleep_num for random cheat >> ./logs
sleep $sleep_num
sh modify.sh $acct $pwd $base_num >> ./logs
echo "\n" >> ./logs
done < acct_list
done < acct_list