Skip to content

Instantly share code, notes, and snippets.

@adamhjk
Created January 31, 2009 00:53
Show Gist options
  • Save adamhjk/55385 to your computer and use it in GitHub Desktop.
Save adamhjk/55385 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
$| = 1;
open(BLOCK, "/sbin/service gpm restart|");
foreach my $line (<BLOCK>) {
print $line;
}
close(BLOCK);
#!/usr/bin/perl
$SIG{'CHLD'} = 'IGNORE';
$| = 1;
open(BLOCK, "/sbin/service gpm restart|");
foreach my $line (<BLOCK>) {
print $line;
}
close(BLOCK);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment