Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Returning status to parent from pipe

by Crackers2 (Parson)
on Aug 25, 2010 at 20:53 UTC ( [id://857295]=note: print w/replies, xml ) Need Help??


in reply to Returning status to parent from pipe

If you're using the bash shell something like this might work:

if (fork()){ } else { exec 'com1 | com2; exit $PIPESTATUS[0]'; }

You can read more about this in the bash manual.

Replies are listed 'Best First'.
Re^2: Returning status to parent from pipe
by morrin (Acolyte) on Aug 25, 2010 at 21:11 UTC
    Thanks for the replies I had read about the PIPESTATUS variable in bash ..... for some reason I thought that a perl exec would always run in 'sh'. It does on my system. Apologies if this is a very basic question, but can I change that so that it does run in a bash shell?
      On my system, /bin/sh runs bash. But you could specify which shell you want.
      exec(bash => (-c => 'com1 | com2; exit $PIPESTATUS[0]'));

Log In?
Username:
Password:

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

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

    No recent polls found