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: change filename case

Re: change filename case

From: Mitchell <mitchell_at_comnet.ca>
Date: Thu, 10 May 2001 09:47:23 -0700
Message-ID: <F001.002FF818.20010510091559@fatcity.com>

Hi DBAs

I have a lof of file name like IDP2000.z for tuxedo servers. I need to changed name to idp2000.Z.
I write a following script but never change.

Some suggestion

Mitchell

# init_idp.ksh
# 2001-05-09 /Mitchell
#

ls -la IDP* | awk ' { print $9 } ' > tobechanged
#

while read i
do

        cat $i | tr [A-Y] [a-y] > $(i)
done < tobechanged
echo job is donn

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Mitchell
  INET: mitchell_at_comnet.ca

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 Thu May 10 2001 - 11:47:23 CDT

Original text of this message

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