deep-wine-runner/deb/opt/apps/deepin-wine-runner/InstallRuntime/remove/ppc64el.sh

13 lines
277 B
Bash
Raw Normal View History

2023-03-19 19:29:04 +08:00
#!/bin/bash
arch=ppc64el
libPath=/usr/lib/powerpc64le-linux-gnu/
package=$arch-runtime-for-qemu
if [[ ! -d $libPath ]]; then
echo "未安装 $arch 运行库,按回车键退出"
read
exit 1
fi
sudo apt purge $package -y
echo 卸载完成,按回车键退出
read