#!/bin/sh # # Metafox - enterprise content management system # # _sql/dump/make-dump.sh - creates initial SQL dump # ____________________________________________________________ # # Developed by Ondrej Jombik # Copyright (c) 2002,2004 Platon Group, http://platon.sk/ # All rights reserved. # # See README file for more information about this software. # See COPYING file for license information. # # Download the latest version from # http://platon.sk/projects/Metafox/ # # $Platon: Metafox/sql/dump/make-dump.sh,v 1.7 2012-04-29 15:51:54 nepto Exp $ mysqldump -u metafox -pkofola metafox -d --add-drop-table > mysql.sql grep '^DROP TABLE' mysql.sql | sed 's/^.*\(ezin_[a-z_]\+\).*$/\1/g' > table-list.txt mysqldump -u metafox -pkofola metafox -t ezin_roles >> mysql.sql cat >> mysql.sql <