比较带空格的字符串相等的Shell脚本
时间:2006-09-07 来源:mishuang
如果要比较的字符串中间有空格,可以用下面的程序(摘自《Unix Shells by Example, 3rd Edition》)
name="Joe Blow"
if [[ $name == "Joe Blow" ]]
then
printf "Hello $name\n"
fi
如果不带空格,则可以用下面的程序
name="Joe"
if [ $name = "Joe" ]
then
printf "Hello $name\n"
fi
需要注意的是方括号和等号的数目
name="Joe Blow"
if [[ $name == "Joe Blow" ]]
then
printf "Hello $name\n"
fi
如果不带空格,则可以用下面的程序
name="Joe"
if [ $name = "Joe" ]
then
printf "Hello $name\n"
fi
需要注意的是方括号和等号的数目
相关阅读 更多 +