view bin/? @ 2740:3b2a1b3e3621

<elliott> sed -i \'1036s/>/> /\' quotes
author HackBot
date Thu, 18 Apr 2013 00:38:38 +0000
parents bb8aae82db7c
children a20360ccb4cd
line wrap: on
line source

#!/bin/sh
topic=$(echo "$1" | lowercase | sed "s/ *$//")
topic1=$(echo "$topic" | sed "s/s$//")
cd wisdom
if [ \( "$topic1" = "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