uengine-runner/main.sh

26 lines
797 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
#########################################################################
# 作者gfdgd xi、为什么您不喜欢熊出没和阿布
# 版本1.8.1
#########################################################################
#################
# 引入所需的库
#################
echo 'mmmmm '
echo '# "# m m m mm m mm mmm m mm '
echo '#mmmm" # # #" # #" # #" # #" "'
echo '# "m # # # # # # #"""" # '
echo '# " "mm"# # # # # "#mm" # '
echo
echo
while [ true ]
do
echo "请输入 APK 路径或将 APK 文件拖入此处"
read path
if [ ! -d $path ]; then
echo APK路径不存在请重新输入
echo
continue
fi
uengine install --apk='$path'
done