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 scripting need help

RE: Unix scripting need help

From: <cosltemp-g.manoj_at_orbitech.co.in>
Date: Mon, 26 Aug 2002 04:48:20 -0800
Message-ID: <F001.004BF75E.20020826044820@fatcity.com>


i=1
for all_file in `ls -l /tmp'
file_tag[i]=`echo "$all_file" | sed 's/mylogfile//g' | sed 's/\.log//g'` i=i+1
echo ${file_tag[i]}
done

-----Original Message-----
Sent: Monday, August 26, 2002 4:13 PM
To: ORACLE-L
Cc: SinardyXing

Hi all,

For example, my files are like these

      mylogfile001.log
      mylogfile002.log

I want to initialize my variables with those number, like this

i=1
for all_file in `ls -1 /tmp`
do

      file$i=all_file
      i=i+1

done

file_tag1=`unix_command $file1 ` <--- help me here

when I do

echo $file_tag1

it should give me 001

Thank you

sinardy

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Sinardy Xing
  INET: SinardyXing_at_bkgcomsvc.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: cosltemp-g.manoj_at_orbitech.co.in 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 Mon Aug 26 2002 - 07:48:20 CDT

Original text of this message

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