Skip to content

Instantly share code, notes, and snippets.

@shibayu36
Created April 2, 2012 16:08
Show Gist options
  • Save shibayu36/2284688 to your computer and use it in GitHub Desktop.
Save shibayu36/2284688 to your computer and use it in GitHub Desktop.
#!perl
use strict;
use warnings;
my $pid = fork;
if ($pid) {
warn 'parent';
wait();
warn $? / 256;
}
else {
warn 'child';
exit 10;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment