#!/bin/sh # @(#) mount Nero Burning ROM images # (c) 2006 by Dirk Jagdmann if [ $# -lt 1 ] then echo 'usage: mount-nrg ' exit 1 fi if [ $# -lt 2 ] then M=/mnt else M="$2" fi mount -o loop,offset=307200 "$1" "$M"