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