#!/bin/bash
set -x

if ! dd if=$1 of=$2  bs=65544 skip=$3 count=1 
then
   echo "ERROR: $0 <ifile> <ofile> <zero based sv index>"
   exit -1
fi

