view bin/quotes @ 11056:6656fafd6684

<oerjan> le/rn newbie of the month//Newbie of the Month is a traditional #esoteric position. Benefits include gentle mentoring, like having shachaf revert all your wisdom additions.
author HackBot
date Thu, 29 Jun 2017 00:31:18 +0000
parents ad85e082af96
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