legacy-dotfiles/zsh/.zsh/functions/get_cnt

16 lines
269 B
Text
Raw Normal View History

2014-07-01 22:53:27 +02:00
# -*- 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