File: minid.pl

package info (click to toggle)
lsb 9.20161125
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 316 kB
  • ctags: 71
  • sloc: python: 1,151; sh: 284; makefile: 76; 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);