mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 01:58:27 +08:00
12 lines
305 B
Bash
Executable File
12 lines
305 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
|
|
exit
|
|
fi
|
|
echo "拷贝失败,申请使用 sudo 拷贝"
|
|
sudo cp -rv /tmp/geek.exe ./ |