#!/bin/sh

if test -r $1.vol
then
	sed '1,/^.$/d' $1.vol > $1.raw
else
	echo "$1.vol does not exist !" >&2
	exit 1
fi

