index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | testiso | 13 |
@@ -1,6 +1,7 @@ -#!/bin/sh
-
-if [ $# -ne 1 ]; then
- echo "usage: testiso <iso name>"
-fi
-qemu -boot d -kernel-kqemu -cdrom "${1}"
+#!/bin/sh + +if [ $# -ne 1 ]; then + echo "usage: testiso <iso name>" + exit 1 +fi +qemu -boot d -kernel-kqemu -cdrom "${1}" |