17 lines
791 B
Bash
Executable File
17 lines
791 B
Bash
Executable File
#!/usr/bin/env uengine-runner-auto-install-bash
|
||
# 使用 UEngine 运行器(原 Wine 运行器)的语言解析器
|
||
##########################################################################################
|
||
# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
|
||
# 更新时间:2023年1月20日
|
||
##########################################################################################
|
||
# 用于判断是否为 bash 解释器
|
||
if [[ 1 == 2 ]]; then
|
||
# 保持对旧版本的兼容
|
||
bash rm "/tmp/HTYBattery.apk"
|
||
fi
|
||
rm "/tmp/HTYBattery.apk"
|
||
download "https://code.gitlink.org.cn/gfdgd_xi/program-library-android/raw/branch/master/HTYBattery.apk?gfdgd_xi=gfdgd_xi" /tmp "HTYBattery.apk"
|
||
installapk "/tmp/HTYBattery.apk"
|
||
info 提示 安装完成!
|
||
rm -rfv "/tmp/HTYBattery.apk"
|