Mercurial > repo
view bin/quotes @ 10027:ad85e082af96
<oerjan> ` cp bin/quote{,s} # add rng improv
author | HackBot |
---|---|
date | Sun, 25 Dec 2016 15:29:10 +0000 (2016-12-25) |
parents | e037173e0012 |
children |
line wrap: on
line source
#!/bin/sh allquotes | if [ "$1" ]; then if expr "$1" + 0 >/dev/null 2>&1; then sed "$1q;d" else grep -P -i -- "$1" fi else shuf --random-source=/dev/urandom -n 1; fi