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
string comparison Swapna173 UNIX for Dummies Questions & Answers 1 03-23-2009 01:59 PM
String comparison in if statement javathecat Shell Programming and Scripting 5 02-04-2009 05:11 AM
string comparison Jatsui Shell Programming and Scripting 5 02-04-2008 04:28 PM
string comparison fedora Shell Programming and Scripting 2 01-03-2007 03:20 PM
String Comparison abey High Level Programming 1 10-19-2005 01:08 PM

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 04-23-2009
hypnotic_meat hypnotic_meat is offline
Registered User
  
 

Join Date: Apr 2009
Posts: 4
Help with String Comparison

I'm running the following script to compare string values to a regexp:


Code:
for entry in $(lpinfo -v | cut -c 1-); do
    if [$entry == socket://*]
      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:

[network: command not found
[socket: command not found

How can I get bash to interpret this as just a string comparison and not me trying to call tons of undefined functions?

Any help is much appreciated.
  #2 (permalink)  
Old 04-23-2009
giannicello giannicello is offline
Registered User
  
 

Join Date: Sep 2001
Location: Phoenix
Posts: 169
What happens when you do this:


Code:
if [ "$entry" = "socket://*" ]

  #3 (permalink)  
Old 04-24-2009
hypnotic_meat hypnotic_meat is offline
Registered User
  
 

Join Date: Apr 2009
Posts: 4
Yep, that did it. I didn't know you had to have a space between the brackets and the operations on the inside. Also, I had to do a double bracket test to make the evaluation interpret the right side as a regexp. So:


Code:
if [[ $entry == socket://* ]]

Thanks for the help.
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 01:04 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