view bin/quotes @ 12259:5d86806a2603 draft

<int-e> mkx ../bin/"//\\`^ 2 "quote${1:+ }$1"
author HackEso <hackeso@esolangs.org>
date Sat, 07 Dec 2019 23:54:29 +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