I have a perl script that takes 2 parameters. 1 is a file inout the other a file output.
Additionally, I am sending debug information to the screen.
I want to capture that extra output to a file,...
http://www.experts-exchange.com/OS/Unix/Q_22652930.html
Zones:
Unix OSDate Answered: 06/23/2007 Rating: 8.0 Views: 0
Hi,
If I want to perform some functions like the following Unix command:
ls | tee log
That is I could able to see the result by the ls command at the screen and also can get a dump file called log ...
http://www.experts-exchange.com/Programming/Languages/Java/Q_10184679.html
Zones:
JavaDate Answered: 07/20/1999 Rating: 7.0 Views: 0
I am running some scripts and put their output thought 'tee', but I need the exit status from the script, e.g.
cat_logs | tee output_file
I need to test the exit status from cat_logs and not from ...
http://www.experts-exchange.com/OS/Unix/Q_10144246.html
Zones:
Unix OSDate Answered: 04/06/1999 Rating: 7.6 Views: 0
Has there any way to get the output of a "tee" without writing to a file?
The situation is like this. I am searching in the httpd access_log for entries containing text "thankyou.html" with th...
http://www.experts-exchange.com/Programming/Languages/Scripting/CGI/Q_20461056.html
Zones:
CGIDate Answered: 08/29/2004 Rating: 7.6 Views: 0
The question is
how can I make the tee command work from "here documents"
What I wanted to do is to do some bash code which does like this
ftp to a server,
download a certain file a certain n...
http://www.experts-exchange.com/Programming/System/Linux/Q_20775685.html
Zones:
Linux DevDate Answered: 10/27/2003 Rating: 7.8 Views: 0
I have a script called script1 which returns a result code. However the script itself also calls other scripts which frequently display important messages we need to capture. Unfortunately
scrip...
http://www.experts-exchange.com/OS/Unix/AIX/Q_21181154.html
Zones:
AIX UnixDate Answered: 12/15/2004 Rating: 9.2 Views: 0
I am wondering if there is a command to make a copy of stdout to say stderr.
I need this so I can transform each one differently.
e.g.
I will call the command I an looking for replicate
(( ...
http://www.experts-exchange.com/Programming/System/Unix_-_Posix/Q_21211475.html
Hi - I have the following script, it appears though that when I pipe the output from do_countdown through any kind of stream filter - sed, grep, tr ..etc, and then through tee that the output is be...
http://www.experts-exchange.com/Programming/Languages/Scripting/Shell/sh/Q_22799421.html
Consider the following commands used to duplicate all stdout and stderr from the ls command to a log file.
ls myfile 2>&1 | tee file.log
echo $?
All output from the ls command needs to go to...
http://www.experts-exchange.com/Programming/Languages/Scripting/Shell/ksh/Q_24913998.html
Hi
Is there a way using TEE command to direct the stderr and the stdou to a file. Currently only the stdout is hitting my file with this command and the stderr is hitting the screen:
call E...
http://www.experts-exchange.com/Programming/Languages/Scripting/Shell/ksh/Q_22755694.html
Zones:
ksh,
sh,
Unix...Date Answered: 08/10/2007 Rating: 8.2 Views: 19