Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: check file size, extension question???
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"
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
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: 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).
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: 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).
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
--
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 Liststo: 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
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |