deep-wine-runner/RemoveQemuUser.sh

11 lines
247 B
Bash
Executable File
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
# 判断是否有安装 Qemu User
which qemu-i386 > /dev/null
if [[ ! $? ]]; then
echo 您未安装 Qemu User按回车键后退出
read
exit 1
fi
sudo apt purge qemu-user -y
echo 安装完成,按回车键后退出
read