view bin/? @ 2269:3c7c48cde005

<Fiora> addquote <Phantom_Hoover> Sgeo_, are you just trying to post kmcbait... *Fiora imagines a cardboard box propped up by a stick with a pile of monads inside. <elliott> Fiora: that is actually what Haskell is.
author HackBot
date Tue, 26 Feb 2013 23:00:23 +0000
parents 7914d7e0b500
children ddbe0012f414
line wrap: on
line source

#!/bin/sh
topic=$(echo "$1" | tr A-Z a-z | sed "s/ *$//")
topic1=$(echo "$topic" | sed "s/s$//")
cd wisdom
if [ \( "$topic" = "ngevd" \) -a \( -e ngevd \) ];
    then cat /dev/urandom;
    elif [ -e "$topic" ];
    then cat "$topic";
    elif [ -e "$topic1" ];
    then cat "$topic1";
    else echo "$1? ¯\(°_o)/¯"; exit 1;
fi