LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 04-02-2008, 07:22 AM   #1
indiancosmonaut
Member
 
Registered: Feb 2007
Posts: 65

Rep: Reputation: 15
abnormal behavious in comparison check in 'if' condition.


Hi

Please look at the following code snipet.

Code:
xxx=0

if [ xxx -eq "0" ]
then
        echo "Im in if"
fi
It goes in the if condition! I fail to understand since xxx does not have a "$" in the condition check.
The shell is ksh and machine is AIX 5.3

Please provide some explanation. I would be very thankful.

Kind regards,

indiancosmonaut
 
Old 04-02-2008, 07:38 AM   #2
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
well, obviously korn assumes $xxx in this case.
though I can't find any documentation.

if you use /usr/bin/test instead it fails.
 
Old 04-02-2008, 08:16 AM   #3
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
I would imagine that when performing integer comparison (-eq and friends), any non-integer operands take the value of 0. Don't you get some warning message about it?
 
Old 04-02-2008, 08:36 AM   #4
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
not so.
it must be a ksh feature!

Code:
$xxx=12
$ if [ xxx -eq 12  ]; then echo in if;fi 
in if

Code:
$ bash
bash-3.2$ xxx=12
bash-3.2$ if [ xxx -eq 12  ]; then echo in if;fi
bash: [: xxx: integer expression expected
bash-3.2$ if [ $xxx -eq 12  ]; then echo in if;fi
in if
/bin/sh
Code:
bash-3.2$ /bin/sh
$ xxx=12
$ if [ xxx -eq 12  ]; then echo in if;fi
$  if [ $xxx -eq 12  ]; then echo in if;fi
in if
 
Old 04-02-2008, 08:48 AM   #5
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
that's far out
 
Old 04-02-2008, 11:05 AM   #6
indiancosmonaut
Member
 
Registered: Feb 2007
Posts: 65

Original Poster
Rep: Reputation: 15
Thanks gentlemen, for your analysis. I think you found a new thing in ksh. :-)

Kind regards,

indiancosmonaut
 
Old 04-02-2008, 11:24 AM   #7
bigearsbilly
Senior Member
 
Registered: Mar 2004
Location: england
Distribution: Mint, Armbian, NetBSD, Puppy, Raspbian
Posts: 3,515

Rep: Reputation: 239Reputation: 239Reputation: 239
yes!
3 different results for 3 different, sort-of, compatible shells.

(on solaris anyway, /bin/sh is actually bash on linux)
 
Old 04-02-2008, 06:47 PM   #8
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Hey BB, what do those 3 get if you use [[ ]] i.e. double brackets.?
I don't have access to all 3 shells, but was taught way back in a ksh course that [[ ]] is better.
 
Old 04-02-2008, 11:25 PM   #9
indiancosmonaut
Member
 
Registered: Feb 2007
Posts: 65

Original Poster
Rep: Reputation: 15
Hi,

In ksh it works with double square brackets also.

Code:
$ xxx=12
$ if [ xxx -eq 12 ]; then echo true!; fi
true!
$ if [[ xxx -eq 12 ]]; then echo true!; fi
true!
$
Is there a reason for preferring [[ ]] instead of []?

Kind regards,

indiancosmonaut
 
Old 04-02-2008, 11:34 PM   #10
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
I think [[ is more of a macros than a command-line program that accepts parameters like [ or test.
I personally prefer [[ in bash than [ when it comes to arithmetic comparisons but use [ when it comes to string tests.
 
Old 04-03-2008, 12:10 AM   #11
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
double square brackets test is more robust: http://www.tldp.org/LDP/abs/html/tes...ml#DBLBRACKETS
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Makefile:condition to check whether a file exists ? Ashok_mittal Linux - Newbie 4 12-06-2011 07:52 PM
Can I use 'if' statements in Expect script? d3funct Programming 3 02-24-2011 03:59 PM
String comparison in while [ ... ] condition hiwa Linux - Software 3 05-27-2007 02:05 AM
Abnormal traffic? xathras Linux - Security 4 05-08-2005 04:13 PM
Abnormal font sizes... Nazxul Linux - Software 3 02-06-2005 01:28 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 09:15 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration