monkfan has asked for the wisdom of the Perl Monks concerning the following question:
If I want to get the output from 'othercode.pl' written into a file say "othercode.out", and then directly pass that output file to 'thiscode.pl' and see the result of 'thiscode.pl' at once. Yes, I mean in single command line? Is it possible?$ perl othercode.pl | perl thiscode.pl
still without being able to see the result of 'thiscode.pl'$ perl othercode.pl > 'othercode.out' | perl thiscode.pl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Creating an outputfile and processing it at once
by sk (Curate) on Jul 28, 2005 at 07:45 UTC | |
|
Re: Creating an outputfile and processing it at once
by umbra (Acolyte) on Jul 28, 2005 at 07:47 UTC | |
by sk (Curate) on Jul 28, 2005 at 07:49 UTC |