1
0

Initial commit

This commit is contained in:
2013-03-21 01:54:15 +01:00
commit 8c8798b036
86 changed files with 1864 additions and 0 deletions
Executable
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
STAMP=`date +"%Y%m%d-%H%M%S"`
OUTPUT=mysql-$1_$STAMP.sql.gz
echo "Dumping database $1 to $OUTPUT ..."
mysqldump -e "$@" | gzip -f --rsyncable >$OUTPUT