The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
C function to test existence of a login xavier054 High Level Programming 2 03-04-2008 01:51 PM
Checking the existence of a file.. igandu Shell Programming and Scripting 7 06-13-2007 03:47 AM
File existence mpang_ Shell Programming and Scripting 2 03-27-2006 11:27 AM
How to test for a specific file size GEBRAUN UNIX for Dummies Questions & Answers 1 02-20-2006 11:50 AM
Loop for file existence bd_joy UNIX for Dummies Questions & Answers 2 02-02-2006 12:51 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-26-2005
forevercalz forevercalz is offline
Registered User
  
 

Join Date: Sep 2005
Posts: 74
how to test for file existence using file size?

ok im doing this in a normal shell. i need to check the file in the script. how should i write the if else statment?


if the filesize contains 0kb then it will echo out file contains nothing
else if the script contains more than 0kb then it will echo out file exist.


any one care to help? thanks ! im new to unix scripting..
  #2 (permalink)  
Old 10-26-2005
blowtorch's Avatar
blowtorch blowtorch is offline Forum Advisor  
Supporter
  
 

Join Date: Dec 2004
Location: Singapore
Posts: 2,350
Code:
if [ -s /path/to/file ]; then 
echo file contains something
else echo contains nothing
fi
Try checking the man pages on your system as well. In this case, man test.
  #3 (permalink)  
Old 10-26-2005
forevercalz forevercalz is offline
Registered User
  
 

Join Date: Sep 2005
Posts: 74
thank you blowtorch!
  #4 (permalink)  
Old 10-26-2005
mschwage mschwage is offline
Registered User
  
 

Join Date: Jul 2005
Location: Oak Park, IL
Posts: 102
Here's something a little more informative, if you need it, but it's in ksh. Dunno if that's normal enough for you. -e is not available in sh:

#!/bin/ksh
if [ -s /path/to/file ] ; then
echo We have a file with stuff in it
elif [ -e /path/to/file ] ; then
echo We have a file with 0-length
else
echo "The file isn't even there!"
fi

do a "man test" on a UNIX box near you.

BTW, if you're on Linux then /sbin/sh is likely really bash, and you can use the -e.
Sponsored Links
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 10:50 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0