view bin/quote @ 12304:546e85338cf1 draft

<int-e> learn Kingoffrance is what happens when you cross zzo38 with a conspiracy theorist.
author HackEso <hackeso@esolangs.org>
date Sun, 26 Jan 2020 02:32:48 +0000
parents 3e54f8d1843f
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