ddos/ddos.sh
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:50:39 +0200
changeset 70 ded389a5dc2a
parent 0 af501b0c1716
permissions -rwxr-xr-x
Profiling support added * To use the benefits of profiling, set PROFILING=<target> * eg: mbroeker@localhost $ make -e PROFILING=linux * mbroeker@localhost $ export PROFILING=linux && make 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;