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?
|
|
|
|
|
|
|
Shortest fix:
Bash's EditOh, I posted too fast. Bourne shell, not Bash...
Edit 2Ah, sorry. Bash's POSIX emulation doesn't go far enough; a true original Bourne shell doesn't have
|
|||
|
|
|
|
Look into regular expressions and =~. I haven't tested it yet, but |
||||
|
|
|
Use the unix tools. The program "cut" will happily shorten a string.
... should do what you want. |
||
|
|
|
Or, as an example of the =~ operator:
|
||
|
|
You can call
|
||
|
|
|
|
I'd do the following:
Or:
|
||
|
|
|
|
I like to use the case statement to compare strings. A trivial example is
I've done crazy things like
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. |
||
|
|