#!/bin/sh
[ -z "$1" ] && echo "usage: $0 <input>" && exit 1

# get a standard DOS large disk partition table = 63 * 512 bytes

dd if=$1 bs=512 count=63
