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 > UNIX for Dummies Questions & Answers
.
google unix.com



UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
check if file is empty stolz Shell Programming and Scripting 8 03-22-2009 11:15 PM
How to check if a file is empty? shreekrishnagd UNIX for Dummies Questions & Answers 1 09-09-2008 08:21 AM
How to check for empty file in Perl? deepakwins UNIX for Dummies Questions & Answers 1 03-04-2008 03:00 PM
Check for empty string rahman_riyaz Shell Programming and Scripting 12 01-24-2008 03:13 AM
How can I make the for command check to see if a file is empty before executing? chrchcol Shell Programming and Scripting 3 07-29-2006 03:14 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-21-2008
mavesum mavesum is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 12
to check if file is empty or not and return a non zero value

Hi All,

I am new to unix worldd .

I need to check a file1 if its empty or not.

If its empty then return a non zero value say 99

could you pls let me know the perl script for this.
  #2 (permalink)  
Old 11-22-2008
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,717
The shell does it - normal return values are: zero == true anything else == false

Code:
#one way
if [[ -s filename ]] ; then
      echo "filename exists and is > 0 bytes"
else
      echo "filename does not exist or is zero length"
fi
# another way
if [[ -f filename ]] ; then
      if [[ -s filename ]] ; then
             echo "filename exists and is > zero"
      else
             echo "filename exists and == zero "
      fi
else
      echo "filename does not exist"
fi
  #3 (permalink)  
Old 11-22-2008
Konerak Konerak is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 20
Jims answer will work. If you want the exitcode to be 99, just add the instruction "exit 99" where you want it.
Closed Thread

Bookmarks

Tags
shell script, shell scripting, unix scripting, unix scripting basics

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 08:52 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
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