perl : stdout is not return to screen


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting perl : stdout is not return to screen
# 1  
Old 08-05-2008
perl : stdout is not return to screen

Hello All,

I have a perl script , and the STDERR and additional FH is redirected to the STDOUT like below:
open STDOUT ,">>$log" or die "$! :: $log\n";
open STDERR ,">&STDOUT" or die "$! :: Can redirect STDERR to STDOUT\n";
select STDERR; $|=1;
open LOG ,">&STDOUT" or die "$! :: Can redirect LOG FH to STDOUT\n";
select LOG ; $|=1;
select STDOUT; $|=1;


Everything work fine but when I close this three FH as shown below:
$|=0;
close STDERR;
close LOG;
close STDOUT;

print "Done\n"

I expect to see my print "Done" on the screen , but oddly I don't.

Are anyone know what am I doing wrong ?
Your help will appreciated !

Thanks.


# 2  
Old 08-05-2008
i dont know about perl, but in bash if you redirect the stdout to something else, and then close it, you have to reopen it poiting to the "screen"
# 3  
Old 08-05-2008
So, Perl inherits the streams pointed to by STDIN, STDOUT and STDERR from the shell. If you need to re-connect them to other streams the way you did, you should first save a reference to the original filehandles in some variables beforehand, so that when you need to restore you can reinitialize them using these references saved. Otherwise, the streams are closed and you have no way to open them again until the end of your script.

Or, you can wrap the code needed to use custom STD* streams in a code block, and use "local" variable instead. This way, the original streams are just suppressed but not closed while in the code block, that will be restored when the local scope terminates.

I'll give you an example of the second approach because I think this is easier.

Code:
print "This will be printed to STDOUT\n";
{
    local *STDOUT;
    open(STDOUT, ">/dev/null") or die $!;
    print "This will be trashed to nowhere\n";
}
print "This will be printed to STDOUT\n";

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Redirect STDOUT & STDERR to file and then on screen

Dear all, redirecting STDOUT & STDERR to file is quite simple, I'm currently using: Code: exec 1>>/tmp/tmp.log; exec 2>>/tmp/tmp.log But during script execution I would like the output come back again to screen, how to do that? Thanks Luc edit by bakunin: please use CODE-tags like the... (6 Replies)
Discussion started by: tmonk1
6 Replies

2. Shell Programming and Scripting

Need output of script on screen and file with correct return status of the called script.

Hi, I am trying to capture logs of the script in the file as well as on the screen. I have used exec and tee command for this. While using exec command I am getting the correct output in the file but, script output is not getting displayed on the screen as it get executed. Below is my sample... (14 Replies)
Discussion started by: Prathmesh
14 Replies

3. Shell Programming and Scripting

Perl SSH:Expect stdout

I am having a problem figuring out how to turn stdout on in the middle of my ssh session. If I turn it on or off in the initial session it works, but if I try to turn it on in the middle, I can't seem to find the correct statement. my $ssh = Net::SSH::Expect->new ( host =>... (1 Reply)
Discussion started by: numele
1 Replies

4. Shell Programming and Scripting

Redirecting STDERR to file and screen, STDOUT only to file

I have to redirect STDERR messages both to screen and also capture the same in a file but STDOUT only to the same file. I have searched in this formum for a solution, but something like srcipt 3>&1 >&2 2>&3 3>&- | tee errs doesn't work for me... Has anyone an idea??? (18 Replies)
Discussion started by: thuranga
18 Replies

5. Shell Programming and Scripting

Redirect STDOUT & STDERR to file and then on screen

Dear all, redirecting STDOUT & STDERR to file is quite simple, I'm currently using: exec 1>>/tmp/tmp.log; exec 2>>/tmp/tmp.logBut during script execution I would like the output come back again to screen, how to do that? Thanks Lucas (4 Replies)
Discussion started by: Lord Spectre
4 Replies

6. Shell Programming and Scripting

Automatically send stdout and stderror to a file as well as to the screen, but without using tee

Hi, I've been using the following commands in my automated scripts, to ensure that all text output is sent to a log file instead of to the screen: exec 1>>$SCRIPT_LOG_FILE exec 2>>$SCRIPT_LOG_FILE However, I've now discovered that the system used for automating the script executions... (4 Replies)
Discussion started by: confusedAdmin
4 Replies

7. Shell Programming and Scripting

echo 2 txt files to screen no carraige return

I have two text files, each of then only containing ONE line and NO carraige return or white space at the end...how do I echo both of these text files to the screen without putting an extra line? I want to do this from the command line. file1.txt: this is file1.txt 1 file2.txt: this is... (4 Replies)
Discussion started by: ajp7701
4 Replies

8. Shell Programming and Scripting

perl - print to a log file and screen

as the title suggests, i need to print a user message to a log file and the screen using perl. in unix i set up a function using 'tee' like so function Display_Message { echo "$*" | tee -ai $LOGFILE } the following command then obviously displays to the screen and prints to a log... (6 Replies)
Discussion started by: mjays
6 Replies

9. Shell Programming and Scripting

PERL: clearing the screen

I would like to clear the screen in perl scripts without having to use system(). Is there a way to do this? (7 Replies)
Discussion started by: dangral
7 Replies

10. Shell Programming and Scripting

Simple Perl Script to Screen Display

$number_clients++; print("Creating client $number_clients\r"); I have been using the above to increment on the screen as the script increments throughout a while loop. What I would like to know is what is the trick to keep the last one on the screen without printing it again? Ie ... (1 Reply)
Discussion started by: Shakey21
1 Replies
Login or Register to Ask a Question