Adjusted to show side effects and their handling
When dealing with static buffers, successive calls point
to the same memory location and overwrite formers ones...
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;