mirror of https://github.com/dirtbags/moth.git
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
case "$1" in
|
||
|
""|"-h"|"--help")
|
||
|
echo "Usage: $0 CATEGORY [POINTS]"
|
||
|
exit
|
||
|
esac
|
||
|
|
||
|
bb=$(dd bs=1 count=5 if=/dev/urandom 2>/dev/null | ./bubblebabble)
|
||
|
points=$2${2:+:}
|
||
|
|
||
|
echo $1:$points$bb
|