view bin/show @ 7490:fb46ec3ff0ae

<hppavilion[1]> ` echo "F=\\"$(find esobible -name \\"*$(echo "$1" | lowercase)*\\" -type f | shuf -n1)\\"; echo -n \\"${F#esobible/}/\\" | rnooodl; cat \\"$F\\" | rnooodl" > bin/bookofeso
author HackBot
date Tue, 19 Apr 2016 20:14:09 +0000
parents 859f9b4339e6
children
line wrap: on
line source

#!/bin/sh
. lib/dcc

# Sanitize
INTERP=`echo "$2" | sed 's/[^A-Za-z0-9]/_/g'`

if [ ! -e subinterps/"$INTERP".cmd ]
then
    echo 'That is not a user interpreter!'
    exit 1
fi

if [ "`wc -l subinterps/$INTERP.arg | sed 's/ .*//'`" -gt 1 ]
then
    echo "`cat subinterps/$INTERP.cmd`" '(sending via DCC)'
    dcc_chat $IRC_NICK < subinterps/$INTERP.arg
else
    echo "`cat subinterps/$INTERP.cmd`" "`cat subinterps/$INTERP.arg`"
fi