File: minid.pl

package info (click to toggle)
lsb 3.2-23.2squeeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 336 kB
  • ctags: 93
  • sloc: python: 740; sh: 259; makefile: 108; perl: 6
file content (8 lines) | stat: -rwxr-xr-x 146 bytes parent folder | download | duplicates (8)
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);