Add a sqlite db creator script
gm3dmo opened this issue · 2 comments
gm3dmo commented
Something like this will pull the csv's generated into a database:
rm logs.db
sqlite3 logs.db << EOF
.separator ","
.import github-logs/exceptions.log.csv exceptions
EOF
gm3dmo commented
I found the above here: import-csv-file-into-sqlite3-database-in-command-line-or-via-batch-file
gm3dmo commented
done