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 script question

RE: Unix script question

From: Brian D. Silverio <bsilverio_at_necc.mass.edu>
Date: Wed, 31 Jan 2001 14:52:22 -0800
Message-ID: <F001.002A66A4.20010131131529@fatcity.com>

Why not use rsync? It was designed for this kind of thing. You can get it complete with man pages at http://rsync.samba.org

> -----Original Message-----
> From: root_at_fatcity.com [mailto:root_at_fatcity.com]On Behalf Of Smith, Ron
> L.
> Sent: Wednesday, January 31, 2001 3:33 PM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: Unix script question
>
>
> You can also do a find filename -size 0. If you return the filename, the
> file has zero blocks.
>
> Ron Smith
> Database Administration
> rlsmith_at_kmg.com
>
>
> -----Original Message-----
> Sent: Wednesday, January 31, 2001 1:48 PM
> To: Multiple recipients of list ORACLE-L
>
>
> I am looking to resolve an issue we have with a particular script.
>
> using a unix script, I need to determine if a file exists and if the size of
> the
> file is zero bytes. using ftp, we put a file a file on a server then we use
> get
> to retreive the same file back. we do this to ensure that the file has been
> sent
> successfully. once the file is gotten back, using get, we compare the
> original
> file to the get file. we then use if to see if the file was successfully
> send
> and received back. if the file is not gotten back, we email the necessary
> people of the error. if the files are different sizes, we email the
> necessary
> people that the file sizes do not match and that the ftp process needs to be
>
> done again. all of the above steps work fine.
>
> the issue we face is when we ftp a zero byte file and receive the same file
> back
> the if statement we're using sees the zero byte file as none existant and
> therefore an email is sent saying that the ftp process failed when in fact
> it
> didn't. it just sent and received a zero byte file. a zero byte file is
> not a
> failed process.
>
> finally...the question...
>
> can a unix scripting guru assist me in the code that checks if a file is a
> zero
> byte file?
>
> thanks in advance...Roy
>
> below is the current portion of the script that checks for errors:
>
>
> put file1 'file1'
> get 'file1' check_file
> bye
> !EOF
>
>
> # First if statement will check to see if the check file exists
>
> if test ! -s "check_file"
> then
>
> # if the file does not exist, send the failed message and exit the program
>
> echo Failed to pull a check file back from the FTP
> echodo /usr/ucb/mail -s ftp_of_file1.FAILED `cat $EMAIL/fail.list` <
> $EMAIL/fail.msg
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Roy Ferguson
> INET: rferguso_at_level1.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: Smith, Ron L.
> INET: rlsmith_at_kmg.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: Brian D. Silverio
  INET: bsilverio_at_necc.mass.edu

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 Wed Jan 31 2001 - 16:52:22 CST

Original text of this message

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