RE: Unix - Writing stderr to a file and stdout

2002-04-29 Thread Mohammed . Ahsanuddin

Brian,

That did it..Thanks a lot for the trick..

Mohammed Ahsanuddin
Oracle DBA


-Original Message-
Sent: Monday, April 29, 2002 2:28 PM
To: Multiple recipients of list ORACLE-L



Does this do it?  STDOUT is directed to stdout.log.  STDERR is directed to
the stdout.log and stderr.log.  I did it using dtksh shell but should work
in standard ksh shell.


#!/usr/dt/bin/dtksh
rm PIPE stdout.log stderr.log
mknod PIPE p
touch stdout.log
tee -a stdout.log stderr.log &
find . -name "*Z" -print 1>>stdout.log 2>>PIPE



Brian P. MacLean
Oracle DBA, OCP8i



 

Mohammed.Ahsanuddin@VerizonWi

reless.com  To: Multiple
recipients of list ORACLE-L <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]   cc:

            Subject:     RE:
Unix - Writing stderr to a file and stdout
 

04/26/02 12:04 PM

Please respond to ORACLE-L

 

 





Hi,

I think I did not explain my request properly..let me try again.

Is it possible to write stderr to stdout and to another file
simultaneously..?

For Ex:

ls -l > outfile 2>&1 will get me command output and diagnostics info in the
same file which is outfile.

However, I am trying to get the diagnostics info into outfile as well as
into another file (say errfile). Would that be possible? I was not able to
do it with tee either..

Thanks

Mohammed Ahsanuddin
Oracle DBA
Verizon Wireless
Work : 845 365 7203
Pager : 800 366 2337 pin : 16040



-Original Message-
Sent: Friday, April 26, 2002 1:56 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]


But of course

find . -print | xargs grep "hoser"

This will generate errors on directories

Make the errors disappear:

 find . -print | xargs grep "hoser"  2>/dev/null

Now send the standard output to a file.  Make sure the
file is outside the directory structure you are searching.

 find . -print | xargs grep "hoser"  2>/dev/null 1>/tmp/hoser.txt

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 11:30 AM
Please respond to ORACLE-L


To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc:
Subject:Unix - Writing stderr to a file and stdout


Hi,

Is it possible to write stderr to stdout and to another file
simultaneously..?

Thanks in advance.

Mohammed Ahsanuddin
Oracle DBA

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSU

RE: Unix - Writing stderr to a file and stdout

2002-04-29 Thread Brian_P_MacLean


Does this do it?  STDOUT is directed to stdout.log.  STDERR is directed to
the stdout.log and stderr.log.  I did it using dtksh shell but should work
in standard ksh shell.


#!/usr/dt/bin/dtksh
rm PIPE stdout.log stderr.log
mknod PIPE p
touch stdout.log
tee -a stdout.log stderr.log &
find . -name "*Z" -print 1>>stdout.log 2>>PIPE



Brian P. MacLean
Oracle DBA, OCP8i



   

Mohammed.Ahsanuddin@VerizonWi  

reless.com  To: Multiple recipients of 
list ORACLE-L <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]   cc:

        Subject:     RE: Unix - 
Writing stderr to a file and stdout
   

04/26/02 12:04 PM  

Please respond to ORACLE-L 

   

   





Hi,

I think I did not explain my request properly..let me try again.

Is it possible to write stderr to stdout and to another file
simultaneously..?

For Ex:

ls -l > outfile 2>&1 will get me command output and diagnostics info in the
same file which is outfile.

However, I am trying to get the diagnostics info into outfile as well as
into another file (say errfile). Would that be possible? I was not able to
do it with tee either..

Thanks

Mohammed Ahsanuddin
Oracle DBA
Verizon Wireless
Work : 845 365 7203
Pager : 800 366 2337 pin : 16040



-Original Message-
Sent: Friday, April 26, 2002 1:56 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]


But of course

find . -print | xargs grep "hoser"

This will generate errors on directories

Make the errors disappear:

 find . -print | xargs grep "hoser"  2>/dev/null

Now send the standard output to a file.  Make sure the
file is outside the directory structure you are searching.

 find . -print | xargs grep "hoser"  2>/dev/null 1>/tmp/hoser.txt

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 11:30 AM
Please respond to ORACLE-L


To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc:
Subject:Unix - Writing stderr to a file and stdout


Hi,

Is it possible to write stderr to stdout and to another file
simultaneously..?

Thanks in advance.

Mohammed Ahsanuddin
Oracle DBA

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line cont

RE: Unix - Writing stderr to a file and stdout

2002-04-28 Thread Scott . Shafer

"command" 2>&1 > logfile

Scott Shafer
San Antonio, TX
210-581-6217


> -Original Message-
> From: [EMAIL PROTECTED]
> [SMTP:[EMAIL PROTECTED]]
> Sent: Friday, April 26, 2002 1:31 PM
> To:   Multiple recipients of list ORACLE-L
> Subject:  Unix - Writing stderr to a file and stdout
> 
> Hi,
> 
> Is it possible to write stderr to stdout and to another file
> simultaneously..?
> 
> Thanks in advance.
> 
> Mohammed Ahsanuddin
> Oracle DBA
> 
> -- 
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> -- 
> Author: 
>   INET: [EMAIL PROTECTED]
> 
> Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
> San Diego, California-- Public Internet access / Mailing Lists
> 
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from).  You may
> also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Unix - Writing stderr to a file and stdout

2002-04-26 Thread Jared . Still

Sorry, I misread it.

Just change it around a little:

find . -print | xargs grep "hoser"  2>&1 | tee /tmp/test.txt

try 'man -k output'

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 12:04 PM
Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
    cc: 
    Subject:        RE: Unix - Writing stderr to a file and stdout


Hi,

I think I did not explain my request properly..let me try again.

Is it possible to write stderr to stdout and to another file
simultaneously..?

For Ex:

ls -l > outfile 2>&1 will get me command output and diagnostics info in 
the
same file which is outfile.

However, I am trying to get the diagnostics info into outfile as well as
into another file (say errfile). Would that be possible? I was not able to
do it with tee either..

Thanks

Mohammed Ahsanuddin
Oracle DBA
Verizon Wireless
Work : 845 365 7203
Pager : 800 366 2337 pin : 16040



-Original Message-
Sent: Friday, April 26, 2002 1:56 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]


But of course

find . -print | xargs grep "hoser" 

This will generate errors on directories

Make the errors disappear:

 find . -print | xargs grep "hoser"  2>/dev/null

Now send the standard output to a file.  Make sure the
file is outside the directory structure you are searching.

 find . -print | xargs grep "hoser"  2>/dev/null 1>/tmp/hoser.txt

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 11:30 AM
Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L 
<[EMAIL PROTECTED]>
cc: 
Subject:Unix - Writing stderr to a file and stdout


Hi,

Is it possible to write stderr to stdout and to another file
simultaneously..?

Thanks in advance.

Mohammed Ahsanuddin
Oracle DBA

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Unix - Writing stderr to a file and stdout

2002-04-26 Thread Freeman, Robert

Try the tee command

ls -l > outfile 2> tee -a &1

Never tried it this way, so time to experiement... :-)

RF

-Original Message-
[mailto:[EMAIL PROTECTED]]
Sent: Friday, April 26, 2002 3:04 PM
To: Multiple recipients of list ORACLE-L


Hi,

I think I did not explain my request properly..let me try again.

Is it possible to write stderr to stdout and to another file
simultaneously..?

For Ex:

ls -l > outfile 2>&1 will get me command output and diagnostics info in the
same file which is outfile.

However, I am trying to get the diagnostics info into outfile as well as
into another file (say errfile). Would that be possible? I was not able to
do it with tee either..

Thanks

Mohammed Ahsanuddin
Oracle DBA
Verizon Wireless
Work : 845 365 7203
Pager : 800 366 2337 pin : 16040



-Original Message-
Sent: Friday, April 26, 2002 1:56 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]


But of course

find . -print | xargs grep "hoser" 

This will generate errors on directories

Make the errors disappear:

 find . -print | xargs grep "hoser"  2>/dev/null

Now send the standard output to a file.  Make sure the
file is outside the directory structure you are searching.

 find . -print | xargs grep "hoser"  2>/dev/null 1>/tmp/hoser.txt

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 11:30 AM
Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc: 
Subject:Unix - Writing stderr to a file and stdout


Hi,

Is it possible to write stderr to stdout and to another file
simultaneously..?

Thanks in advance.

Mohammed Ahsanuddin
Oracle DBA

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Freeman, Robert 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Unix - Writing stderr to a file and stdout

2002-04-26 Thread Mohammed . Ahsanuddin

Hi,

I think I did not explain my request properly..let me try again.

Is it possible to write stderr to stdout and to another file
simultaneously..?

For Ex:

ls -l > outfile 2>&1 will get me command output and diagnostics info in the
same file which is outfile.

However, I am trying to get the diagnostics info into outfile as well as
into another file (say errfile). Would that be possible? I was not able to
do it with tee either..

Thanks

Mohammed Ahsanuddin
Oracle DBA
Verizon Wireless
Work : 845 365 7203
Pager : 800 366 2337 pin : 16040



-Original Message-
Sent: Friday, April 26, 2002 1:56 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]


But of course

find . -print | xargs grep "hoser" 

This will generate errors on directories

Make the errors disappear:

 find . -print | xargs grep "hoser"  2>/dev/null

Now send the standard output to a file.  Make sure the
file is outside the directory structure you are searching.

 find . -print | xargs grep "hoser"  2>/dev/null 1>/tmp/hoser.txt

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 11:30 AM
Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc: 
Subject:Unix - Writing stderr to a file and stdout


Hi,

Is it possible to write stderr to stdout and to another file
simultaneously..?

Thanks in advance.

Mohammed Ahsanuddin
Oracle DBA

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Unix - Writing stderr to a file and stdout

2002-04-26 Thread Jared . Still

But of course

find . -print | xargs grep "hoser" 

This will generate errors on directories

Make the errors disappear:

 find . -print | xargs grep "hoser"  2>/dev/null

Now send the standard output to a file.  Make sure the
file is outside the directory structure you are searching.

 find . -print | xargs grep "hoser"  2>/dev/null 1>/tmp/hoser.txt

Jared






[EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
04/26/2002 11:30 AM
Please respond to ORACLE-L

 
To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]>
cc: 
Subject:Unix - Writing stderr to a file and stdout


Hi,

Is it possible to write stderr to stdout and to another file
simultaneously..?

Thanks in advance.

Mohammed Ahsanuddin
Oracle DBA

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).