#!/bin/sh
# dumptable.sh - creates a quick dump of a table in a database
# usage: dumptable.sh dbname tablename > outfile
mysqldump -u root $*


