write some simple highlight scripts

This commit is contained in:
filifa 2024-07-26 21:42:09 -05:00
parent 8c5292f9c8
commit 70548bda02
2 changed files with 39 additions and 0 deletions

23
mlbposthighlights.sh Executable file
View File

@ -0,0 +1,23 @@
#!/bin/bash
set -e
while getopts 'd:' opt
do
case $opt in
d)
db=$OPTARG
;;
?)
exit 1
;;
esac
done
if [[ -z $db ]]
then
echo "$0:" '-d is required' >&2
exit 1
fi
sqlite3 $db < posthighlights.sql | awk -F  '{printf "%s\n\n%s\n", $1, $3}'

16
posthighlights.sql Normal file
View File

@ -0,0 +1,16 @@
.separator 
begin;
select
json ->> 'headline',
json ->> 'id',
json ->> 'url'
from highlights
where
json ->> 'url' is not null and
posted = 0;
update highlights
set posted = 1
where posted = 0;
commit;