tqemu-kvm - scripts - random scripts
 (HTM) git clone https://git.parazyd.org/scripts
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       tqemu-kvm (193B)
       ---
            1 #!/bin/sh
            2 case "$1" in
            3 amd*)
            4         shift
            5         exec qemu-system-x86_64 -enable-kvm "$@"
            6         ;;
            7 i386)
            8         shift
            9         exec qemu-system-i386 -enable-kvm "$@"
           10         ;;
           11 *)
           12         exec qemu-system-x86_64 -enable-kvm "$@"
           13         ;;
           14 esac