The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 04-20-2007
johnf johnf is offline
Registered User
 

Join Date: May 2006
Location: England
Posts: 251
Quote:
Originally Posted by anbu23
Change
Code:
if [ $1 = ];
to
Code:
if [ -z $1 ];
if [ $1 = "" ];
Reply With Quote