summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/get_cnt
blob: 5fc3d4ff05d89182aa82545b2c7662820794f2cc (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 "$HOME/.local/share/$1.cnt" ]; then
        cnt=$(/bin/cat "$HOME/.local/share/$1.cnt")
    fi

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

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