[bash]字符串判空有空格报错:binary operator expected

最近写代码时,遇到了binary operator expected报错,代码类似如下

filename="hello world"
if [ -e $filename ]; then
    echo $filename
else
    echo "nothing"
fi

查阅得知,在使用-e,-n,-d等作为if的条件判断时 如果参数$filename本身包含空格,则会报错。
解决放法:使用[[ -e $filename]] 或者 [ -e "$filename" ]

你可能感兴趣的:([bash]字符串判空有空格报错:binary operator expected)