view bin/show @ 11243:5c41fb3f6567

<oerjan> # Stolen from Roger9//`learn Bureaucracy (from French bureau, "burrow") is a political system in which squirrels rule the nation, and burrow their nuts.
author HackBot
date Wed, 22 Nov 2017 00:43:46 +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