我正在尝试检查字符串是否包含任何通配符。 这是我失败的尝试:
#!/bin/bash
WILDCARDS='* . ? ! ] ['
a="foo*bar"
for x in $REJECTED_WILDCARDS
do
if [[ "$a" == *"$x"* ]]
then
echo "It's there!";
fi
done
有什么建议吗?
答案 0 :(得分:5)
稍短且没有循环:
if [ "$a" != "${a//[\[\]|.? +*]/}" ] ; then
echo "wildcard found"
fi
参数替换删除所有通配符。 字符串不再相等。
答案 1 :(得分:4)
将通配符设置为bash数组,如此
wildcards=( '*' '.' '?' '|' ']' '[' )
然后
a="foo*bar"
for wildcard in "${wildcards[@]}";
do
if [[ $a == *"${wildcard}"* ]];
then
echo 'yes';
fi;
done