Sponsored Content
Top Forums Shell Programming and Scripting perl : stdout is not return to screen Post 302222022 by cbkihong on Tuesday 5th of August 2008 10:46:50 PM
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";

 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
install::TempContent::Objects::mod_perl-2.0.9::docs::apiUseraContrinstall::TempContent::Objects::mod_perl-2.0.9::docs::api::Apache2::SubProcess(3)

NAME
Apache2::SubProcess -- Executing SubProcesses under mod_perl Synopsis use Apache2::SubProcess (); use Config; use constant PERLIO_IS_ENABLED => $Config{useperlio}; # pass @ARGV / read from the process $command = "/tmp/argv.pl"; @argv = qw(foo bar); $out_fh = $r->spawn_proc_prog($command, @argv); $output = read_data($out_fh); # pass environment / read from the process $command = "/tmp/env.pl"; $r->subprocess_env->set(foo => "bar"); $out_fh = $r->spawn_proc_prog($command); $output = read_data($out_fh); # write to/read from the process $command = "/tmp/in_out_err.pl"; ($in_fh, $out_fh, $err_fh) = $r->spawn_proc_prog($command); print $in_fh "hello "; $output = read_data($out_fh); $error = read_data($err_fh); # helper function to work w/ and w/o perlio-enabled Perl sub read_data { my ($fh) = @_; my $data; if (PERLIO_IS_ENABLED || IO::Select->new($fh)->can_read(10)) { $data = <$fh>; } return defined $data ? $data : ''; } # pass @ARGV but don't ask for any communication channels $command = "/tmp/argv.pl"; @argv = qw(foo bar); $r->spawn_proc_prog($command, @argv); Description "Apache2::SubProcess" provides the Perl API for running and communicating with processes spawned from mod_perl handlers. At the moment it's possible to spawn only external program in a new process. It's possible to provide other interfaces, e.g. executing a sub-routine reference (via "B::Deparse") and may be spawn a new program in a thread (since the APR api includes API for spawning threads, e.g. that's how it's running mod_cgi on win32). API
"spawn_proc_prog" Spawn a sub-process and return STD communication pipes: $r->spawn_proc_prog($command); $r->spawn_proc_prog($command, @argv); $out_fh = $r->spawn_proc_prog($command); $out_fh = $r->spawn_proc_prog($command, @argv); ($in_fh, $out_fh, $err_fh) = $r->spawn_proc_prog($command); ($in_fh, $out_fh, $err_fh) = $r->spawn_proc_prog($command, @argv); obj: $r ( "Apache2::RequestRec object" ) arg1: $command ( string ) The command to be "$exec()"'ed. opt arg2: "@argv" ( ARRAY ref ) A reference to an array of arguments to be passed to the process as the process' "ARGV". ret: ... In VOID context returns no filehandles (all std streams to the spawned process are closed). In SCALAR context returns the output filehandle of the spawned process (the in and err std streams to the spawned process are closed). In LIST context returns the input, outpur and error filehandles of the spawned process. since: 2.0.00 It's possible to pass environment variables as well, by calling: $r->subprocess_env->set($key => $value); before spawning the subprocess. There is an issue with reading from the read filehandle ($in_fh)): A pipe filehandle returned under perlio-disabled Perl needs to call select() if the other end is not fast enough to send the data, since the read is non-blocking. A pipe filehandle returned under perlio-enabled Perl on the other hand does the select() internally, because it's really a filehandle opened via ":APR" layer, which internally uses APR to communicate with the pipe. The way APR is implemented Perl's select() cannot be used with it (mainly because select() wants fileno() and APR is a crossplatform implementation which hides the internal datastructure). Therefore to write a portable code, you want to use select for perlio-disabled Perl and do nothing for perlio-enabled Perl, hence you can use something similar to the "read_data()" wrapper shown in the Synopsis section. Several examples appear in the Synopsis section. "spawn_proc_prog()" is similar to "fork()", but provides you a better framework to communicate with that process and handles the cleanups for you. But that means that just like "fork()" it gives you a different process, so you don't use the current Perl interpreter in that new process. If you try to use that method or fork to run a high-performance parallel processing you should look elsewhere. You could try Perl threads, but they are very expensive to start if you have a lot of things loaded into memory (since "perl_clone()" dups almost everything in the perl land, but the opcode tree). In the mod_perl "paradigm" this is much more expensive than fork, since normally most of the time we have lots of perl things loaded into memory. Most likely the best solution here is to offload the job to PPerl or some other daemon, with the only added complexity of communication. To spawn a completely independent process, which will be able to run after Apache has been shutdown and which won't prevent Apache from restarting (releasing the ports Apache is listening to) call spawn_proc_prog() in a void context and make the script detach and close/reopen its communication streams. For example, spawn a process as: use Apache2::SubProcess (); $r->spawn_proc_prog ('/path/to/detach_script.pl', $args); and the /path/to/detach_script.pl contents are: # file:detach_script.pl #!/usr/bin/perl -w use strict; use warnings; use POSIX 'setsid'; chdir '/' or die "Can't chdir to /: $!"; open STDIN, '/dev/null' or die "Can't read /dev/null: $!"; open STDOUT, '+>>', '/path/to/apache/error_log' or die "Can't write to /dev/null: $!"; open STDERR, '>&STDOUT' or die "Can't dup stdout: $!"; setsid or die "Can't start a new session: $!"; # run your code here or call exec to another program reopening (or closing) the STD streams and called "setsid()" makes sure that the process is now fully detached from Apache and has a life of its own. "chdir()" ensures that no partition is tied, in case you need to remount it. See Also mod_perl 2.0 documentation. Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. Authors The mod_perl development team and numerous contributors. perl v5.18.2 install::TempContent::Objects::mod_perl-2.0.9::docs::api::Apache2::SubProcess(3)
All times are GMT -4. The time now is 03:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy