view bin/? @ 1897:70243980213c

<ais523> pastequotes Sgeo
author HackBot
date Wed, 30 Jan 2013 05:49:06 +0000
parents 5881e3a0c652
children 5ec896dab821
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 iconv -f UTF-16LE -t UTF-8 -c /dev/urandom;
    elif [ -e "$topic" ];
    then cat "$topic";
    elif [ -e "$topic1" ];
    then cat "$topic1";
    else echo "$1? ¯\(°_o)/¯"; exit 1;
fi