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

Re: Pipe Question

by sachmet (Scribe)
on Apr 26, 2001 at 00:25 UTC ( [id://75604]=note: print w/replies, xml ) Need Help??


in reply to Pipe Question

Two notes:
  1. Your pipe is on the wrong side. It should be:
    open(P,'./from.pl|'); while (<P>) { print; $count++; } close(P); print "$count\n";
    which gives you what you expect.
  2. Make sure your scripts are mode +x! If you can't run them from the command line, they won't work.
In general, though, remember - put the pipe on the side as you would if you ran them on the command line; that is: ./from.pl | ./piper.pl would be what you'd run in this case, so use the pipe after the script name. (If you wanted to write to it, you'd put the pipe before.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-23 11:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found