stevset/scripts/server_bin/db_maint.sh
2022-11-26 17:46:08 -05:00

6 lines
159 B
Bash
Executable file

#!/bin/bash
#vaccum the database
echo "--- DATABASE MAINTENANCE ---"
cd $HOME/gallery-dl
sqlite3 archive.sqlite3 'VACUUM;'
echo "--- MAINTENANCE COMPLETE ---"