7 lines
120 B
Bash
7 lines
120 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "usage: testiso <iso name>"
|
|
fi
|
|
qemu -boot d -kernel-kqemu -cdrom "${1}"
|