- or download this
#!/usr/bin/perl -w
# forker.pl
...
}
print "This is the parent process\n";
- or download this
#!/usr/bin/perl -l
# busy_wait.pl
...
print "Busy!";
sleep 2;
}
- or download this
[matt@megatron ~]$ /tmp/forker.pl
Busy!
...
[matt@megatron ~]$ Busy!
Busy!
Busy!