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 mailing List

RE: Unix mailing List

From: Kevin Lange <kgel_at_ppoone.com>
Date: Wed, 05 Dec 2001 09:38:02 -0800
Message-ID: <F001.003D5E3F.20011205092115@fatcity.com>

Couple clarifications:

  1. -a : file exists (any type of file) -d : file is a directory -f : file is a regular file (like Scott Said)
  2. The test is not neccessary

vFILE_NAME='The file in question'

if [ -f ${vFILE_NAME} ]
then
  echo "File is there. You do not have to spend hours recreating it." else
  echo "Arggghhh ! Who the heck deleted my file !! Where the heck is my gun!"
fi

-----Original Message-----
Sent: Wednesday, December 05, 2001 11:00 AM To: Multiple recipients of list ORACLE-L

This is untested and from memory, but:

if [test -f <filename>]
then
echo "found"
else
echo "help, are you an idiot"
fi

--Scott


Do You Yahoo!?
Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Scott Shafer
  INET: sknd100_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: Kevin Lange
  INET: kgel_at_ppoone.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 Wed Dec 05 2001 - 11:38:02 CST

Original text of this message

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