#!/bin/sh
# dumpschema.sh - dump a schema for an existing database
# usage: dumpschema.sh dbname > outfile
mysqldump -u root -d $*


