#!/bin/bash # mail to caketheidiot@sdf.org to apply for membership :) # (The goofle form does not work as i lost access) while true do read -p "cake: " name # below is the users to send messages to echo [cake] "$name" | nc 127.0.0.1 667 -w0 # EXAMPLE: echo [cake] "$name" | nc 69.69.69.69 667 -w0 to send to someone who has that IP done exit