vote up 4 vote down star

I need to compare strings in shell:

var1="mtu eth0"

if [ "$var1" == "mtu *" ]
then
    # do something
fi

But obviously the "*" doesn't work in Shell. Is there a way to do it?

flag

53% accept rate

7 Answers

vote up 5 vote down check

Shortest fix:

if [[ "$var1" = "mtu "* ]]

Bash's [[ ]] doesn't get glob-expanded, unlike [ ] (which must, for historical reasons).

Edit

Oh, I posted too fast. Bourne shell, not Bash...

if [ "${var1:0:4}" == "mtu " ]

${var1:0:4} means the first four characters of $var1.

Edit 2

Ah, sorry. Bash's POSIX emulation doesn't go far enough; a true original Bourne shell doesn't have ${var1:0:4}. You'll need something like mstrobl's solution.

if [ "$(echo "$var1" | cut -c0-4)" == "mtu " ]
link|flag
vote up -1 vote down

Look into regular expressions and =~. I haven't tested it yet, but $var1 =~ "mtu .*" should work.

link|flag
shell's "test" doesn't have the "=~", does it? If only it were Perl.. – n-alexander Oct 8 '08 at 16:28
Bash 3.1 and greater has [[ a =~ .* ]]. But* inside the quotes is wrong for 3.2 and greater without shopt -s compat31. – ephemient Oct 8 '08 at 21:29
vote up 4 vote down

Use the unix tools. The program "cut" will happily shorten a string.

if [ "$(echo $var1 | cut -c 4)" -eq "mtu " ];

... should do what you want.

link|flag
yes, but kinda heavy – n-alexander Oct 8 '08 at 16:37
vote up -1 vote down

Or, as an example of the =~ operator:

if [[ "$var1" =~ "mtu *" ]]
link|flag
What kind of shell is that? – ADEpt Oct 8 '08 at 21:07
Bash 3.1 and greater has [[ a =~ .* ]]. But* inside the quotes is wrong for 3.2 and greater without shopt -s compat31. – ephemient Oct 8 '08 at 21:30
vote up 3 vote down

You can call expr to match strings against regular expressions from within Bourne Shell scripts. The below seems to work:

#!/bin/sh

var1="mtu eth0"

if [ "`expr \"$var1\" : \"mtu .*\"`" != "0" ];then
  echo "match"
fi
link|flag
vote up 1 vote down

I'd do the following:

# Removes anything but first word from "var1"
if [ "${var1%% *}" = "mtu" ] ; then ... fi

Or:

# Tries to remove the first word if it is "mtu", checks if we removed anything
if [ "${var1#mtu }" != "$var1" ] ; then ... fi
link|flag
vote up 0 vote down

I like to use the case statement to compare strings.

A trivial example is

case "$input"
in
  "$variable1") echo "matched the first value" 
     ;;
  "$variable2") echo "matched the second value"
     ;;
  *[a-z]*)  echo "input has letters" 
     ;;
  '')       echo "input is null!"
     ;;
   *[0-9]*)  echo "matched numbers (but I don't have letters, otherwise the letter test would have been hit first!)"
     ;;
   *) echo "Some wacky stuff in the input!"
esac

I've done crazy things like

case "$(cat file)"
in
  "$(cat other_file)")  echo "file and other_file are the same"
      ;;
  *)  echo "file and other_file are different"
esac

And that works too, with some limitations, such as the files can't be more than a couple megabytes and the shell simply doesn't see nulls, so if one file is full of nulls and the other has none, (and neither have anything else), this test won't see any difference between the two.

I don't use the file-comparing as a serious example, only an example of how the case statement is capable of doing much more flexible string matching than is available with test or expr or other similar shell expressions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.