mirror of
https://github.com/simon987/od-database.git
synced 2025-04-20 10:56:47 +00:00
6 lines
200 B
Bash
Executable File
6 lines
200 B
Bash
Executable File
#!/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" |