之前发了一篇《中国联通福利:中国联通掌厅APP自动登录、签到、金币、任务、解流量封顶》。
是用GithubAction运行的,不过联通毕竟是国内服务,如果有国内VPS的话,还是用国内的VPS比较好,比较稳定。
这里就说一下如何本机运行的方法吧。
使用方法
1. 首先下载脚本到你的VPS
以下二选一
https://github.com/peng4740/HiCnUnicom/raw/master/CnUnicom.sh
https://cdn.jsdelivr.net/gh/peng4740/HiCnUnicom/CnUnicom.sh
比如,我将其保存到/root/CnUnicom/CnUnicom.sh
,可以在SSH终端用wget下载
wget -qO /root/CnUnicom/CnUnicom.sh https://cdn.jsdelivr.net/gh/peng4740/HiCnUnicom/CnUnicom.sh
2. 再写一个调用脚本的脚本
我们要传入的变量有几个,手机号、服务密码、APPID
将以下内容保存到/root/CnUnicom/run.sh
,记得把手机号、服务密码、APPID都改成你自己的
#!/bin/bash username=12345678910 password=123456 appid=xxxxx export $appid $username $password bash $(cd "$(dirname "${BASH_SOURCE-$0}")"; pwd)/CnUnicom.sh
3. 定时自动运行
SSH终端里执行crontab -e
在最后新增一行,写入30 12 * * * /root/CnUnicom/run.sh >> /root/CnUnicom/crontab.log 2>&1
保存
这样就会在每天的12:30运行脚本。
相关文章
《中国联通福利:中国联通掌厅APP自动登录、签到、金币、任务、解流量封顶》:https://haoduck.com/725.html