view bin/? @ 1927:e5e4524372d5

<elliott> mv wisdom/a.is523 wisdom/ais523; mv wisdom/c.oppro wisdom/coppro
author HackBot
date Thu, 31 Jan 2013 21:07:43 +0000
parents 5ec896dab821
children 1c1429d055bc
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