初始化项目

This commit is contained in:
2025-06-04 11:38:14 +08:00
commit d285fb9cd5
4 changed files with 31 additions and 0 deletions

13
modify.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
if [ "$#" -ne "2" ];then
echo 参数不合法!
echo eg: sh $0 [账号] [密码]
exit 1
fi
acct=$1
passwd=$2
random_num=$(shuf -i 1-1000 -n 1)
step=$(( 10000 + random_num ))
echo `date +"%Y/%m/%d %H:%M:%S"` $acct step =\> $step
#curl --location --request GET 'https://steps.api.030101.xyz/api?account=qiezihwy@outlook.com&password=HwyXiaomi9836$&steps=12134'
curl -s --location --request GET "https://steps.api.030101.xyz/api?account=$acct&password=$passwd&steps=$step"