summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/get_cnt
blob: 5b06e007255acfb6a4622ce0ec42d5ccde0e7349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- mode: shell-script -*-

if [ -n "$1" ]; then
    if [ -e "~/.local/share/$1.cnt" ]; then
        cnt=$(/bin/cat "~/.local/share/$1.cnt")
    fi

    if [ -z "$cnt" ]; then
        cnt=0
    fi

    echo $cnt
else
    echo "No count name specified" >&2
fi