#!/bin/sh

if [ -z "$1" ]; then
	echo "usage: mkdummy [file]"
	exit 1
fi

dd if=/dev/zero of=$1 bs=1 count=9760
