16 lines
269 B
Text
16 lines
269 B
Text
|
# -*- 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
|