view bin/? @ 1993:a7cc9b351f25

<oerjan> gcc -o bin/fueue fueue.c
author HackBot
date Sat, 02 Feb 2013 22:56:28 +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