Add scripts and such

This commit is contained in:
polyfloyd 2016-09-20 18:57:06 +02:00
parent 1f68248e67
commit 9070b29b7b
3 changed files with 53 additions and 0 deletions

11
irc-say Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
HOST=127.0.0.1
PORT=31337
if [ $# -eq 0 ]; then
echo "Usage: $0 <message>..."
exit
fi
echo "$*" | nc "$HOST" "$PORT"