Reverted r42528. Links with href="#" make firefox scroll to the top of the page,...
[lhc/web/wiklou.git] / maintenance / storage / make-blobs
1 #!/bin/bash
2
3 if [ X$2 == X ];then
4 echo 'Usage: make-blobs <server> <db>'
5 exit 1
6 fi
7
8 echo "CREATE DATABASE $2" | mysql -u wikiadmin -p`wikiadmin_pass` -h $1 && \
9 mysql -u wikiadmin -p`wikiadmin_pass` -h $1 $2 < blobs.sql
10
11