#!/bin/sh
#
# Script to restore the database that was dumped using
# the dumpdb script
#

if [ -z "$1" ] ; then
	echo "Pass the database name as the first parameter"
	exit
fi

psql -f db.dump $1
