view bin/? @ 2834:e4541d1b1547

<kmc> paste < /proc/cpuinfo
author HackBot
date Sat, 04 May 2013 03:17:28 +0000
parents bb8aae82db7c
children a20360ccb4cd
line wrap: on
line source

#!/bin/sh
topic=$(echo "$1" | lowercase | sed "s/ *$//")
topic1=$(echo "$topic" | sed "s/s$//")
cd wisdom
if [ \( "$topic1" = "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