RosettaCodeData/Task/Fork/UNIX-Shell/fork-1.sh
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
170 B
Bash

i=0
(while test $i -lt 10; do
sleep 1
echo "Child process"
i=`expr $i + 1`
done) &
while test $i -lt 5; do
sleep 2
echo "Parent process"
i=`expr $i + 1`
done