#!/bin/ksh

if [ $# -lt 1 ]
then
	echo "Usage: $0 {file_to_convert}"
fi

dd if=$1 bs=1076 skip=1 of=${1%.xgs}.a35
