16 lines
261 B
Text
16 lines
261 B
Text
|
# -*- mode: shell-script -*-
|
||
|
|
||
|
if [ -n "$1" ]; then
|
||
|
if [ -e "~/.local/share/$1.cnt" ]; then
|
||
|
cnt=$(/bin/cat "~/.local/share/$1.cnt")
|
||
|
fi
|
||
|
|
||
|
if [ -z "$cnt" ]; then
|
||
|
cnt=0
|
||
|
fi
|
||
|
|
||
|
echo $cnt
|
||
|
else
|
||
|
echo "No count name specified" >&2
|
||
|
fi
|