view bin/quote @ 4083:bf829021b370

<boily> echo \'Languabes are edible and fun. They provide a quick implementation energy boost!\' >wisdom/languabe
author HackBot
date Tue, 26 Nov 2013 17:50:59 +0000
parents 44d4b2e5140d
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 -n 1; fi