RosettaCodeData/Task/Fork/Tcl/fork.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

19 lines
370 B
Tcl

package require Expect
# or
package require Tclx
for {set i 0} {$i < 100} {incr i} {
set pid [fork]
switch $pid {
-1 {
puts "Fork attempt #$i failed."
}
0 {
puts "I am child process #$i."
exit
}
default {
puts "The parent just spawned child process #$i."
}
}
}