legacy-dotfiles/zsh/.zsh/functions/get_cnt
2014-08-21 00:14:54 +02:00

15 lines
269 B
Bash

# -*- 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