view bin/? @ 2011:544869460785

<oerjan> ln -s /bin/echo bin/rot256
author HackBot
date Tue, 05 Feb 2013 21:49:37 +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