为什么我在Bash中的字符串比较总是被评估为真?

时间:2011-05-14 08:12:09

标签: string bash

我有一个脚本检查文件是否是最新的。

updatedate=`ls -l file | sed -e 's/  */ /g' | cut -d' ' -f7` #cut the modification time
nowdate=`date +"%H:%M"`
echo "$updatedate $nowdate"
if [ "$updatedate"="$nowdate" ]
then
  echo 'OK'
else
  echo 'NOT OK'
fi

但是当我运行它时,比较总是如此:

$ ./checkfile
10:04 10:07
OK

$ ./checkfile
10:07 10:07
OK

为什么?

2 个答案:

答案 0 :(得分:18)

你需要在等号的两边各有一个空格。


if [ "$updatedate" = "$nowdate" ]

答案 1 :(得分:2)

您需要将所有参数与test分隔为空格。就目前而言,你有=对抗它的两个操作数,所以test看到一个参数,而不是你想要的三个参数。