in reply to exit status of a remote program
my @args = ("/usr/bin/mt", "-f", "$$machine{tape}", "online"); my $status = system(@args) / 256; if( $status < 0 || $status > 0 ) { &error_code; } [download]