view bin/? @ 2018:84a34a85e4c8

<oerjan> addquote <Sgeo> This position is asking for "- Extensive experience with API" <Jafet> You\'re just not qualified, kid.
author HackBot
date Wed, 06 Feb 2013 23:05:06 +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