我需要比较shell中的字符串:
var1="mtu eth0"
if [ "$var1" == "mtu *" ]
then
# do something
fi
但显然“*”在 Shell 中不起作用。有没有办法做到这一点?
使用 Unix 工具。该程序cut
将愉快地缩短一个字符串。
if [ "$(echo $var1 | cut -c 4)" = "mtu " ];
...应该做你想做的事。
bash
最短修复:
if [[ "$var1" = "mtu "* ]]
Bash[[ ]]
并没有得到全局扩展,不像[ ]
(出于历史原因,必须这样做)。
bash --posix
哦,我发的太快了。Bourne shell,而不是 Bash ......
if [ "${var1:0:4}" == "mtu " ]
${var1:0:4}
表示 的前四个字符$var1
。
/bin/sh
啊,对不起。Bash 的 POSIX 仿真还远远不够;真正的原始 Bourne shell 没有${var1:0:4}
. 您将需要类似 mstrobl 的解决方案。
if [ "$(echo "$var1" | cut -c0-4)" == "mtu " ]
您可以调用expr
以从 Bourne Shell 脚本中将字符串与正则表达式匹配。以下似乎有效:
#!/bin/sh
var1="mtu eth0"
if [ "`expr \"$var1\" : \"mtu .*\"`" != "0" ];then
echo "match"
fi
我喜欢使用 case 语句来比较字符串。
一个简单的例子是
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
我做过疯狂的事情,比如
case "$(cat file)"
in
"$(cat other_file)") echo "file and other_file are the same"
;;
*) echo "file and other_file are different"
esac
这也有效,但有一些限制,例如文件不能超过几兆字节,shell 根本看不到空值,所以如果一个文件充满了空值而另一个没有,(并且两者都没有其他任何东西),这个测试不会看到两者之间有任何区别。
我不使用文件比较作为一个严肃的例子,只是一个例子说明 case 语句如何能够进行比 test 或 expr 或其他类似的 shell 表达式更灵活的字符串匹配。
我会做以下事情:
# Removes anything but first word from "var1"
if [ "${var1%% *}" = "mtu" ] ; then ... fi
或者:
# Tries to remove the first word if it is "mtu", checks if we removed anything
if [ "${var1#mtu }" != "$var1" ] ; then ... fi
在 Bourne shell 中,如果我想检查一个字符串是否包含另一个字符串:
if [ `echo ${String} | grep -c ${Substr} ` -eq 1 ] ; then
用echo ${String} | grep -c ${Substr}
两个`
反引号括起来:
要检查子字符串是在开头还是结尾:
if [ `echo ${String} | grep -c "^${Substr}"` -eq 1 ] ; then
...
if [ `echo ${String} | grep -c "${Substr}$"` -eq 1 ] ; then
或者,作为=~运算符的示例:
if [[ "$var1" =~ "mtu *" ]]