String comparison tutorial not helpful


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting String comparison tutorial not helpful
# 1  
Old 09-23-2011
String comparison tutorial not helpful

I have a bash string comparison which is not working, looked for help, and found this.

HTML Code:
= 
is equal to
if [ "$a" = "$b" ]
 
[IMG]http://www.tldp.org/LDP/abs/images/caution.gif[/IMG]Note the whitespace framing the =.
if [ "$a"="$b" ] is not equivalent to the above.
</DIV>
I do not find this to be helpful because I am asked to note the whitespace framing the = but am not told what its significance is.

The code which is not working is:

Code:
  if ["$TWI_IP" = "$TWJ_IP"]
                 then
                     PRO=1
                      echo we got an EQUAL!!!!!
                 else
                      echo we did not get an equal even though they are equal
                 fi

The string variables TWI_IP and TWJ_IP have equal contents but this code will always take the else branch.
# 2  
Old 09-23-2011
There should be a space between if and [ as well as a space between [ and "$TWI_IP"
Code:
if [ "$TWI_IP" = "$TWJ_IP" ]
then
  PRO=1
  echo we got an EQUAL!!!!!
else
  echo we did not get an equal even though they are equal
fi

--ahamed
# 3  
Old 09-23-2011
The significance is as follow:
First look at this : [ "$a"="$b" ]

The shell takes "$a", appends an "=" to it, and then it appends "$b" to it.
This is a single longer string containing an equal sign. There is no comparison evaluation done in this case. The only evaluation done is to check that the long string is not empty, which it will never be since there is always at least an equal sign in it even if both $a and $b are empty.

Second, take this:
[ "$a" = "$b" ]

The shell sees three strings: $a, and equal sign, and $b. The equal sign is interpreted as an operator and evaluated as you expect.

Hope this helps.

---------- Post updated at 07:49 AM ---------- Previous update was at 07:44 AM ----------

Extrapolate the same for the spaces between the [ ... ] and the arguments.

When the [ and ] is not separate (surrounded by spaces) then the shell do not recognize them as special characters.

Essentially you have
if "[$a" = "$b]"

Because the brackets are added to the strings before evaluation is done.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

Vue JS 2 Tutorial by The Net Ninja: A Recommended Vue.js Video Tutorial Series

A number of people have asked me how to get started with Vue.js and my reply before today was to Google "Vue.js". That has changed and my recommendation to anyone who wants to learn the fastest growing, easiest to learn and use Vue.js web dev framework is to watch this video tutorial series: ... (0 Replies)
Discussion started by: Neo
0 Replies

2. Shell Programming and Scripting

awk string comparison unterminated quoted string andrule of thumb

I have the logic below to look up for matches within the columns between the two files with awk. In the if statement is where the string comparison is attempted with == The issue seems to be with the operands, as 1. when " '${SECTOR}' " -- double quote followed by single quote -- awk matches... (1 Reply)
Discussion started by: deadyetagain
1 Replies

3. Shell Programming and Scripting

String comparison

hi team, i want to compare the below string from logs, but its is not working. if ]; then echo "restart some process" fi (4 Replies)
Discussion started by: mfaizan40
4 Replies

4. Homework & Coursework Questions

passing letters from an array into a string for string comparison

attempting the hangman program. This was an optional assignment from the professor. I have completed the logical coding, debugging now. ##I have an array $wordString that initializes to a string of dashes ##reflecting the number of letters in $theWord ##every time the user enters a (valid)... (5 Replies)
Discussion started by: lotsofideas
5 Replies

5. Shell Programming and Scripting

to extract string from main string and string comparison

continuing from my previous post, whose link is given below as a reference https://www.unix.com/shell-programming-scripting/171076-shell-scripting.html#post302573569 consider there is create table commands in a file for eg: CREATE TABLE `Blahblahblah` ( `id` int(11) NOT NULL... (2 Replies)
Discussion started by: vivek d r
2 Replies

6. Shell Programming and Scripting

Help with string comparison

#!/bin/sh PRINTF=/usr/bin/printf MACHINE_NAME=`uname -n` TIME=`date +"%H"` $PRINTF "Welcome to $MACHINE_NAME. What is your name?\n" read NAME if ; then $PRINTF "Good morning $NAME, how are you?\n" elif ; then $PRINTF "Good afternoon $NAME, how are you?\n" else $PRINTF "Good... (2 Replies)
Discussion started by: ikeQ
2 Replies

7. Shell Programming and Scripting

String comparison

Hi, I have the below logic. Here 'X' is a variable having some string. if then echo "i dont need to go to ofc" else echo "i need to go to ofc" Please help me to write it in unix. Thanks. (2 Replies)
Discussion started by: 46019
2 Replies

8. Shell Programming and Scripting

Help with String Comparison

I'm running the following script to compare string values to a regexp: for entry in $(lpinfo -v | cut -c 1-); do if then echo "blah" continue fi done Whenever I run it, each token of lpinfo is being interpreted as a command and I get errors such as: ... (2 Replies)
Discussion started by: hypnotic_meat
2 Replies

9. Shell Programming and Scripting

string comparison

Hello experts, (tcsh shell) Quite new to shell scripting... I have got a file with a single word on each line. Want to be able to make a comparison such that i can read pairs of words that are ROT13 to each other. Also, i would like to print the pairs to another file. Any help... (5 Replies)
Discussion started by: Jatsui
5 Replies

10. Programming

String Comparison

Hi all, I have a file like this ibhib=ere wefwfl=werfe sfdes=wef From this file, i need to get the lefthand side string with respect to the corresponding righthand side string. i.e, I need to get the string "ere" with respect to "ibhib". But i am stuck with how to compare a string... (1 Reply)
Discussion started by: abey
1 Replies
Login or Register to Ask a Question