![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Append output to file | ayhanne | Shell Programming and Scripting | 3 | 10-24-2007 01:30 PM |
| perl: simple question on string append | the_learner | Shell Programming and Scripting | 1 | 05-14-2007 06:09 PM |
| formating array file output using perl | seismic_willy | Shell Programming and Scripting | 4 | 03-22-2007 02:23 AM |
| Using PERL to append chars to each line | c0nn0r | Shell Programming and Scripting | 5 | 07-11-2006 08:55 PM |
| Append a field to the end of each line of a file based on searching another file. | ultimate | Shell Programming and Scripting | 2 | 03-29-2005 11:21 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Append Output to another file in Perl
Hi All,
I am writing a Perl script such that the output from "perl myscript.pl file1" to be appended to another file name called file2. I tried out with the below code but couldn't work. Can any expert give me some advice? Code:
open(OUTPUT, 'perl myscript.pl file1 |'); close OUTPUT; open(OUTPUT, ">> file2"); close OUTPUT; |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|