aboutsummaryrefslogtreecommitdiff
path: root/games/xyzzy.sh
blob: ebf3959ad5c6cc08a5a312b0aa4e482705ff03e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# ADVENTURE
dir=${XDG_CONFIG_HOME:-$HOME/.config}/xyzzy
if ! [ -d "$dir" ] ; then
    mkdir -- "$dir" || exit
fi
if [ -e "$dir"/dest ] ; then
    printf >&2 'Nothing happens.\n'
else
    printf 'I see no cave here.\n' > "$dir"/dest
fi
exit 1