view bin/? @ 1885:792fbc70d05e

<Jafet> revert
author HackBot
date Sun, 27 Jan 2013 09:33:07 +0000
parents 6610206a575f
children 1479ce00820c
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-16 -t UTF-8 -c /dev/urandom | tr -d "\r"
    elif [ -e "$topic" ];
    then cat "$topic";
    elif [ -e "$topic1" ];
    then cat "$topic1";
    else echo "$1? ¯\(°_o)/¯"; exit 1;
fi