Revampt jacket loading system
This commit is contained in:
parent
cba88c5def
commit
ac4145ee40
24 changed files with 750 additions and 261 deletions
scripts
13
scripts/copy-chart-info.sh
Executable file
13
scripts/copy-chart-info.sh
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [ "$#" != 2 ]; then
|
||||
echo "Usage: $0 <from> <to>"
|
||||
echo "This script copies the chart/song data from a db to another. Useful for creating new dbs for testing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
from="$1/db.sqlite"
|
||||
to ="$2/db.sqlite"
|
||||
|
||||
sqlite3 $from ".dump songs" | sqlite3 $to
|
||||
sqlite3 $from ".dump charts" | sqlite3 $to
|
Loading…
Add table
Add a link
Reference in a new issue