system call exit status
Bobby Kleemann
rkleeman at neta.com
Thu Jun 1 18:33:36 CDT 2000
~sdpm~
>From http://www.perl.com/pub/doc/manual/html/pod/perlfunc/system.html
You can check all the failure possibilities by inspecting $? like this:
$exit_value = $? >> 8;
$signal_num = $? & 127;
$dumped_core = $? & 128;
_ _ _
Bobby Kleemann <rkleeman at neta.com>
http://www.neta.com/~rkleeman/
On Thu, 1 Jun 2000, jeff wrote:
> ~sdpm~
> How can I decode a non-zero exit status returned from the system
> function call?
>
> I'm trying the following
>
> my @unzip_system = ('unzip', '-d', $tmp, '-q', "$tmp/file.zip");
> if (system(@unzip_system)) {
> carp "system (@unzip_system) failed ($?)";
> system("rm -fr $tmp");
> next;
> }
>
> and getting the error...
>
> system (unzip -d /tmp/unzip.20763 -q /tmp/unzip.20763/file.zip) failed
> (65280) at /prod/newsfeed/bin/get_news line 90
>
> What does the number 65280 mean?
>
> --
> Jeff Saenz
> jeff at planetoid.net
>
>
> ~sdpm~
>
> The posting address is: san-diego-pm-list at hfb.pm.org
>
> List requests should be sent to: majordomo at hfb.pm.org
>
> If you ever want to remove yourself from this mailing list,
> you can send mail to <majordomo at happyfunball.pm.org> with the following
> command in the body of your email message:
>
> unsubscribe san-diego-pm-list
>
> If you ever need to get in contact with the owner of the list,
> (if you have trouble unsubscribing, or have questions about the
> list itself) send email to <owner-san-diego-pm-list at happyfunball.pm.org> .
> This is the general rule for most mailing lists when you need
> to contact a human.
>
~sdpm~
The posting address is: san-diego-pm-list at hfb.pm.org
List requests should be sent to: majordomo at hfb.pm.org
If you ever want to remove yourself from this mailing list,
you can send mail to <majordomo at happyfunball.pm.org> with the following
command in the body of your email message:
unsubscribe san-diego-pm-list
If you ever need to get in contact with the owner of the list,
(if you have trouble unsubscribing, or have questions about the
list itself) send email to <owner-san-diego-pm-list at happyfunball.pm.org> .
This is the general rule for most mailing lists when you need
to contact a human.
More information about the San-Diego-pm
mailing list