mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-12 17:48:27 +08:00
14 lines
325 B
Bash
Executable File
14 lines
325 B
Bash
Executable File
cd /tmp
|
|
echo 提示:
|
|
echo Geek Uninstaller 官网访问较慢,所以请耐心等待
|
|
aria2c -x 16 -s 16 https://geekuninstaller.com/geek.zip
|
|
unzip geek.zip
|
|
cd `dirname $0`
|
|
cp -rv /tmp/geek.exe ./
|
|
if [[ $? == 0]];then
|
|
echo "完成"
|
|
read
|
|
exit
|
|
fi
|
|
echo "拷贝失败,申请使用 sudo 拷贝"
|
|
sudo cp -rv /tmp/geek.exe ./ |