comparison bin/show @ 996:859f9b4339e6

<Gregor> tar xf egobot.tar.xz
author HackBot
date Sun, 09 Dec 2012 19:30:08 +0000
parents
children
comparison
equal deleted inserted replaced
995:6883f5911eb7 996:859f9b4339e6
1 #!/bin/sh
2 . lib/dcc
3
4 # Sanitize
5 INTERP=`echo "$2" | sed 's/[^A-Za-z0-9]/_/g'`
6
7 if [ ! -e subinterps/"$INTERP".cmd ]
8 then
9 echo 'That is not a user interpreter!'
10 exit 1
11 fi
12
13 if [ "`wc -l subinterps/$INTERP.arg | sed 's/ .*//'`" -gt 1 ]
14 then
15 echo "`cat subinterps/$INTERP.cmd`" '(sending via DCC)'
16 dcc_chat $IRC_NICK < subinterps/$INTERP.arg
17 else
18 echo "`cat subinterps/$INTERP.cmd`" "`cat subinterps/$INTERP.arg`"
19 fi