about summary refs log tree commit diff stats
path: root/check_new_clinte_posts.sh
blob: 9086b3a9e620d574056e6d5e80b131445fcb8c32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

OS=$(uname)

LOCAL_FILE="$HOME/.clinte.json"
DBFILE="/usr/local/clinte/clinte.json"

if [ $OS = "Linux" ]
then
    LOCAL_HASH=$(sha256sum "$LOCAL_FILE" 2>/dev/null | cut -d' ' -f1)
    DBFILE_HASH=$(sha256sum "$DBFILE" | cut -d' ' -f1)
else
    LOCAL_HASH=$(sha256 "$LOCAL_FILE" 2>/dev/null | cut -d' ' -f1)
    DBFILE_HASH=$(sha256 "$DBFILE" | cut -d' ' -f1)
fi

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