about summary refs log tree commit diff stats
path: root/check_new_clinte_posts.sh
blob: 1d2dfbe3288fe2feae9b7446de486c0d32315d26 (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" | 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