mirror of https://github.com/dirtbags/moth.git
23 lines
317 B
Plaintext
23 lines
317 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
case $1 in
|
||
|
"")
|
||
|
cat <<'EOT'
|
||
|
{
|
||
|
"Answers": ["answer"],
|
||
|
"Pre": {
|
||
|
"Authors": "neale",
|
||
|
"Body": "I am a generated puzzle."
|
||
|
}
|
||
|
}
|
||
|
EOT
|
||
|
;;
|
||
|
moo.txt)
|
||
|
echo "Moo."
|
||
|
;;
|
||
|
*)
|
||
|
echo "Error: no such file: $1" 1>&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|