The UNIX and Linux Forums  

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
IF condition doubt ravi raj kumar Shell Programming and Scripting 1 03-05-2008 11:16 AM
Condition test felixwhoals UNIX for Dummies Questions & Answers 2 12-22-2007 08:47 AM
test and if condition ciroredz Shell Programming and Scripting 9 06-27-2007 10:17 AM
need help with test condition in shell script pieman8080 Shell Programming and Scripting 9 09-11-2006 06:20 PM
Bad day !! test condition failed --need a one liner to do --help jambesh Shell Programming and Scripting 13 09-06-2006 09:55 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-16-2007
thambi thambi is offline
Registered User
  
 

Join Date: Mar 2007
Posts: 32
Question Condition test ( [[ ]] ) doubt

Hi ,

I have a doubt on condition test ( [[ ]] ). Pls refer blow program.

#!/bin/ksh
TEMP=
if [ -n $TEMP ];then
echo $TEMP
else
print 'invalid option'
fi

Above script's TEMP variable has no value so it gives "invalid option" as output. But I got an error before priting the string .

Result :

./test.ksh[3]: test: argument expected
invalid option


#!/bin/ksh
TEMP=
if [[ -n $TEMP ]];then
echo $TEMP
else
print 'invalid option'
fi

Result:
invalid option

After I tried IF conditon with condition test [[ ]] , I did not see the error (./test.ksh[3]: test: argument expected ).
Why I don't see the error now?.
How Condition test [[ ]] is actually working ?.
How [[ ]] differ from normal if condition?


Regards,
Thambi
  #2 (permalink)  
Old 08-16-2007
vgersh99's Avatar
vgersh99 vgersh99 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,131

Code:
if [ -n "${TEMP}" ]; then

  #3 (permalink)  
Old 08-17-2007
thambi thambi is offline
Registered User
  
 

Join Date: Mar 2007
Posts: 32
Reply

Thanks. What is the difference between "[[ ]]" and "if" ?.
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 05:27 PM.


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