ddos/ddos.sh
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:11 +0200
changeset 33 5e0a954f7c0b
parent 0 af501b0c1716
permissions -rwxr-xr-x
getpwnam_error: * getpwnam allocates memory for the struct and there is no way to free it. * it seems to be a bug in the library function. committer: Markus Bröker <mbroeker@largo.homelinux.org>

#!/bin/bash

for i in {1..1000};
do
	./client &
	if [ $? == 0 ]; then
		printf "Starting process\n";
	fi
done;