~ubuntu-branches/ubuntu/raring/lsb/raring-proposed

1
2
3
4
5
6
7
8
#!/usr/bin/perl -w
# detach from tty
main:
$pid = fork;
exit if $pid;
die "fork: $!" unless defined $pid;
print "continue in child";
sleep(4000);