mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-09 05:20:54 -07:00
12 lines
211 B
Bash
Executable file
12 lines
211 B
Bash
Executable file
#! /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
|