Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Unix - Writing stderr to a file and stdout

Re: Unix - Writing stderr to a file and stdout

From: <Jared.Still_at_radisys.com>
Date: Fri, 26 Apr 2002 10:53:36 -0800
Message-ID: <F001.00450DA2.20020426105336@fatcity.com>


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

Mohammed.Ahsanuddin_at_VerizonWireless.com
Sent by: root_at_fatcity.com
04/26/2002 11:30 AM
Please respond to ORACLE-L  

        To:     Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
        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: Mohammed.Ahsanuddin_at_VerizonWireless.com

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: ListGuru_at_fatcity.com (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: Jared.Still_at_radisys.com

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: ListGuru_at_fatcity.com (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). Received on Fri Apr 26 2002 - 13:53:36 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US