view bin/quote @ 11921:76b3307f169c draft

<wob_jonas> fetch wisdom/can\'t https://hack.esolangs.org/get/wisdom/can%27t
author HackEso <hackeso@esolangs.org>
date Thu, 29 Aug 2019 16:02:31 +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