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: check file size, extension question???

RE: check file size, extension question???

From: Ron Thomas <rthomas_at_hypercom.com>
Date: Tue, 12 Jun 2001 16:57:11 -0700
Message-ID: <F001.00326CB2.20010612170233@fatcity.com>

If you are using korn shell, then why spawn a new process to do this. Try:

a="somefile.gz"
if [ "$a" != "${a%.gz}" ] ; then

  echo "this is a gz file"
elif [ "$a" != "${a%.z}" ] ; then
  echo "this is a z file"

else
  echo "I don't know"
fi

You could also do this...

a="somefile.gz"
SUFFIX=".${a#*\.}"
FILE="${a%$SUFFIX}"
echo "$a $FILE $SUFFIX"

Ron.

                                                                                       
                           
                    cspence_at_FuelS                                                      
                           
                    pot.com              To:     ORACLE-L_at_fatcity.com                  
                           
                    Sent by:             cc:                                           
                           
                    root_at_fatcity.        Subject:     RE: check file size, extension 
question???                  
                    com                                                                
                           
                                                                                       
                           
                                                                                       
                           
                    06/12/01                                                           
                           
                    05:38 PM                                                           
                           
                    Please                                                             
                           
                    respond to                                                         
                           
                    ORACLE-L                                                           
                           
                                                                                       
                           
                                                                                       
                           




I will beat Jared to this, What about using Perl?

"Walking on water and developing software from a specification are easy if both are frozen."

Christopher R. Spence
Oracle DBA
Fuelspot

-----Original Message-----

Sent: Tuesday, June 12, 2001 7:58 PM
To: Multiple recipients of list ORACLE-L

Hi, all

I'm writing some auto backup/refresh script, do you know any command that returns only size or extenstion or a file? (there will be only one file in the directory)

I know awk can return only a part of the output, but somehow I cann't combine awk and ls -l successfully. ls -s returns some size I don't want, I'd like to have size as shown in ls -l.

For the refresh script, I like to check file extension, so if it's in gz, I'll gunzip; if it's Z, I'll uncompress.

Thanks!

Andrea



Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Andrea Oracle
  INET: andreaoracle_at_yahoo.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: Christopher Spence
  INET: cspence_at_FuelSpot.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: Ron Thomas
  INET: rthomas_at_hypercom.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 Tue Jun 12 2001 - 18:57:11 CDT

Original text of this message

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