#!/bin/bash
# $Id: p0rn-dbdump,v 1.3 2004/05/14 20:54:11 mitch Exp $
#
# dumps the complete p0rn.db
#
# 2004 (C) by Christian Garbs <mitch@cgarbs.de>
# Licensed under GNU GPL.  See COPYING for details.

for TABLE in thumbz picz downz; do
    echo dumping table $TABLE 1>&2
    echo "?${TABLE}&"
    p0rn-dblist -v ${TABLE}
done
echo finished 1>&2
