You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
208 B

#!/bin/bash
for f in kvm qemu-kvm qemu; do
type $f >/dev/null 2>&1 || continue
$f "$@"
exit
done
echo "Could not find a working KVM or QEMU to test with!"
echo "Please install kvm or qemu."
exit 1