linux shell 字符串比较

#!/bin/sh
a="a,b,c";
if [[ $a = a* ]];then
echo a;
else
echo b;
fi;

为什么一直输出"b"啊。。。
空格什么的都加了
最新回答
压抑情绪

2021-07-17 03:37:08

我这里一直是输出a的,现象都跟你描述的不一致啊。
如果改为:if [[ "$a" = "a*" ]]; then ,才输出b。

你这里用的是通配符,其实可以用正则匹配:
if [[ "$a" =~ "a.*" ]]; then
这样也是输出a
埋葬之前

2021-12-16 11:47:27

sh -x file 看一下运行过程。我运行输出a 

[root@zabbix ~]# sh -x a
+ a=a,b,c
+ [[ a,b,c = a* ]]
+ echo a
a
[root@zabbix ~]#
追问
+ a=a,b,c
+ b=a,b,c
+ [[ a,b,c = apache-maven-3.0.5 application.2013-05-31.log ....... ]]
test.sh: 4: test.sh: [[: not found
+ echo b

我的是这样。。触发了file grobbing
追答
你想表达的意思是不是去判断第一个字母?是a或b,或c?
你这么写不对的。 第四行这个判断都暴了[[: not found 了。说明你写的有问题。
我在时光深处等你

2023-03-22 14:49:09

1、经测试正常
2、增加一个str变量
#!/bin/sh
a="a,b,c";
b="xyz";
str=`echo $a | sed -n '/^a/p'`

if [[ ! -z $str ]];then
echo a;
else
echo b;
fi

3、或者
#!/bin/sh
a=$1
if [[ -z "$1" ]];then
echo "Usage: $0 string"
exit 0;
fi

str=`echo $a | sed -n '/^a/p'`

if [[ ! -z $str ]];then
echo "Str is a beginning ";
else
echo "Str is not a beginning";
fi
追问
+ a=a,b,c
+ b=a,b,c
+ [[ a,b,c = apache-maven-3.0.5 application.2013-05-31.log ....... ]]
test.sh: 4: test.sh: [[: not found
+ echo b

我的是这样。。触发了file grobbing,请教这是什么问题?
追答
1、你想说globbing吧?
2、你是想表达什么呢?
3、调试一下就不完了吗,写代码 不就是不断的尝试,再尝试吗?谁能保证100%写出来的都是对的呢是不是?
追问
我是想说为什么你么运行都对,我运行就成了file globbing了?
追答
检查一下你的shell和环境变量。
1、echo $0
2、env |grep SHELL
往事如风

2022-02-26 22:20:53

我这边输出的是a,你看下文件的格式(DOS/UNIX),最好是复制到vi编辑器里保存试下.