Created
November 21, 2008 15:13
-
-
Save jzawodn/27451 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
FAIL=0 | |
echo "starting" | |
./sleeper 2 0 & | |
./sleeper 2 1 & | |
./sleeper 3 0 & | |
./sleeper 2 0 & | |
for job in `jobs -p` | |
do | |
echo $job | |
wait $job || let "FAIL+=1" | |
done | |
echo $FAIL | |
if [ "$FAIL" == "0" ]; | |
then | |
echo "YAY!" | |
else | |
echo "FAIL! ($FAIL)" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment