I run a script using a pipe
my $pid = open (OUTPUT, "$my_script") || "";
if (! $pid) {
die("error");
}
while (<OUTPUT>) {
print;
}
close (OUTPUT);
my $exit_status = $?>>8;
print "$exit_status";
Some times I get a long exit status: 72057594037927935
What does this mean? What could cause this?