aboutsummaryrefslogtreecommitdiff
path: root/regenBlackboardDB.sh
blob: 08c021b99893ca1ff6c1c99c17eced92a96620de (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

CSVFILE="$1"
dbfile=Blackboard.db
rm -f "$dbfile"

printf ".mode csv\n.import \"$CSVFILE\" export_table" | \
	sqlite3 "$dbfile"