Initial commit

This commit is contained in:
Simon
2018-05-28 20:35:04 -04:00
commit ad645490f6
61 changed files with 10213 additions and 0 deletions

6
export.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
sqlite3 -header -csv db.sqlite3 < export.sql > out.csv
echo "Exported $(wc -l < out.csv) files"
rm out.csv.xz
xz out.csv
echo "Compressed to $(stat --printf="%s" out.csv.xz) bytes"