blob: 1dc9c018588ef3ccf8f9d1ea08776ae7e33b9080 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
##################################################
#
# GiantDisc mp3 Jukebox
#
# © 2000-2002, Rolf Brugger
#
##################################################
cd /home/andi/muggle/import
echo "creating tables"
mysql < createtables.mysql
echo "reading genres"
mysql --local-infile=1 < readgenres.mysql
echo "reading languages"
mysql --local-infile=1 < readlanguages.mysql
echo "reading musictypes"
mysql --local-infile=1 < readmusictypes.mysql
echo "reading sources"
mysql --local-infile=1 < readsources.mysql
|