the good, old programming error:
* spoon= alloc(data, spoon);
* free(spoon); -> there is a spoon (missing)
Code indent with my buggy GNU Indent
* -> PLEASE GUYS, FIX IT!!
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;