removed code without effect
time_t represents the number of seconds since the birth of unix.
to deal with microseconds and friends, use
a) gettimeofday
b) struct timeval
#!/bin/bashfor i in {1..1000};do ./client & if [ $? == 0 ]; then printf "Starting process\n"; fidone;