deep-wine-runner/RemoveQemuUser.sh

11 lines
247 B
Bash
Raw Normal View History

2023-03-19 14:19:28 +08:00
#!/bin/bash
# 判断是否有安装 Qemu User
which qemu-i386 > /dev/null
2023-03-19 15:25:22 +08:00
if [[ ! $? ]]; then
echo 您未安装 Qemu User按回车键后退出
2023-03-19 14:19:28 +08:00
read
exit 1
fi
sudo apt purge qemu-user -y
echo 安装完成,按回车键后退出
read