Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: RFC: Shell::DWIM

by Aristotle (Chancellor)
on Oct 09, 2002 at 20:48 UTC ( [id://204048]=note: print w/replies, xml ) Need Help??


in reply to RFC: Shell::DWIM

I had a bunch of thoughts about this but rather than write a longwinded post, I thought a little code would demonstrate better. (Untested.)
package Shell::DWIM; use warnings; use strict; our ($RUN_ERROR, $OS_ERR); *OS_ERROR = $^O =~ m{VMS|MSWin|OS/2} ? \$^E : \$!; sub sysdwim { local $@; my $retval = eval { system @_ }; if ($retval == 0) { $RUN_ERROR = undef; return 1; } $RUN_ERROR = $? > 0 ? $? : # non-zero exit code from program $? == -1 ? "$OS_ERR" : # couldn't launch program for some rea +son $@ ? $@ : # eval failed "system() failed with unknown error"; return; } sub import { my $pkg = (caller)[0]; *{$pkg . ($_[0] eq 'override' ? "::system" : "::sysdwim")} = \&sys +dwim; *{$pkg . "::RUN_ERROR"} = \$RUN_ERROR; } 1;
I'll gladly elaborate if any of my intentions are unclear. This isn't optimal either; it'd be perfect for my taste if it was possible to do a lexical no Shell:DWIM; as well, but I haven't gotten so far in Perl yet.

Makeshifts last the longest.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://204048]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-18 08:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found