Sending the Output of a Filter to a File: open(STDOUT, ">/dev/tty"); : Open file « File « Perl






Sending the Output of a Filter to a File: open(STDOUT, ">/dev/tty");

    

#!/usr/bin/perl
# Program to redirect STDOUT from filter to a UNIX file
$| = 1;           
$tmpfile = "temp";
open(DB, "data.txt") || die qq/Can't open "data": $!\n/;

open(SAVED, ">&STDOUT") || die "$!\n";  
open(STDOUT, ">$tmpfile" ) || die "Can't open: $!\n";
open(SORT, "| sort +1") || die;
while(<DB>){
   print SORT;
}
close SORT;
open(STDOUT, ">&SAVED") || die "Can't open";

   
    
    
    
  








Related examples in the same category

1.To open a file for appending:
2.To open a file for reading and writing:
3.To open a file for reading:
4.To open a file for writing
5.open (FILEHANDLE, "<&FILEHANDLE2");
6.open (FILEHANDLE2, "<&=FILEHANDLE");
7.open(MYFILE, ">>c:\\outfile.dat")
8.Open FILEHANDLE
9.Open Operators
10.Open a file
11.Open a file from another file handle
12.Open a file to read
13.Open a pipe to the who command
14.Open command expressions
15.Open file for update
16.Open file for writing
17.Open file reading
18.Open for Appending
19.Open for Reading
20.Open for Reading and Writing
21.Open for Writing
22.Open for writing first, then reading
23.Opening an input filter on a Win32 platform
24.Opening files and using file handles: open(filehandle, name);
25.Opens two files and copies one into another.
26.Checks whether an unopened file actually exists.
27.Input Filter: open(FILEHANDLE, COMMAND|);
28.Uses die when testing for a successful file open operation.
29.Using open to connect different processes