当前位置: 技术问答>linux和unix
shell 字符串通配
来源: 互联网 发布时间:2016-12-13
本文导语: 请问shell脚本中该如何判断字符串$1是否符合"20110710*.txt"的格式?谢谢 | if [[ "$1" = 20110710*.txt ]] | if[ $1="20110710*.txt" ];then echo "yes" else echo "no" fi | if[ $1="20110710*....
请问shell脚本中该如何判断字符串$1是否符合"20110710*.txt"的格式?谢谢
|
if [[ "$1" = 20110710*.txt ]]
|
if[ $1="20110710*.txt" ];then
echo "yes"
else
echo "no"
fi
|
if[ $1="20110710*.txt" ];then