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
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
NEWEST=`ls -1r mysql-$1_*.sql.gz | head -1`
echo "Importing newest backup $NEWEST to database $1 ..."
gunzip -f -c "$NEWEST" | mysql "$@"