diff --git a/mountimg.sh b/mountimg.sh new file mode 100755 index 0000000..09c71d2 --- /dev/null +++ b/mountimg.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +image=$1 +mountpoint=/media/dvd + +mount -t auto -o loop,ro "$1" $mountpoint +