1
0
forked from HPR/hpr-tools

2024-10-29_14-25-10_CET

This commit is contained in:
2024-10-29 14:25:10 +01:00
parent 6aff45a10b
commit 22fae69de5
15 changed files with 5883 additions and 0 deletions

14
feed_watcher/db_regen Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
#
# Make a new empty database using the schema file
#
BASEDIR="$HOME/HPR/feed_watcher"
DB="$BASEDIR/feedWatcher.db"
SCHEMA="$BASEDIR/feedWatcher_schema.sql"
if [[ -e $DB ]]; then
rm -f "$DB"
fi
sqlite3 "$DB" < "$SCHEMA"