view bin/? @ 1877:985e17f8a3fd

<Jafet> sed -ie \'s,-f UTF-8,-f UTF-16,\' bin/\\?
author HackBot
date Sun, 27 Jan 2013 09:26:50 +0000
parents d414786a1837
children c0e8233a8638
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 tr -d "[:print:]\r" </dev/urandom | iconv -f UTF-16 -t UTF-8 -c;
    elif [ -e "$topic" ];
    then cat "$topic";
    elif [ -e "$topic1" ];
    then cat "$topic1";
    else echo "$1? ¯\(°_o)/¯"; exit 1;
fi