legacy-dotfiles/.zsh/functions/get_cnt

16 lines
269 B
Text
Raw Normal View History

# -*- mode: shell-script -*-
if [ -n "$1" ]; then
2012-01-06 16:05:01 +01:00
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