about summary refs log tree commit diff stats
path: root/check_new_clinte_posts.sh
blob: 658d3be18ac4b6f70cc33bfc5633bc91fecbbdc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

LOCAL_FILE="$HOME/.clinte.json"
LOCAL_HASH=$(sha256sum "$LOCAL_FILE" 2>/dev/null | cut -d' ' -f1)

DBFILE="/usr/local/clinte/clinte.json"
DBFILE_HASH=$(sha256sum "$DBFILE" | cut -d' ' -f1)

if [ "$LOCAL_HASH" != "$DBFILE_HASH" ]
then
    printf "%s\n" "New posts on clinte!"
fi