这很好用:
if [[ "test" -eq "test" ]]
then
echo "test compare"
fi
但如果我添加一个点,它就会失败
if [[ ".test" -eq ".test" ]]
then
echo "test compare"
fi
语法错误:预期操作数(错误标记为“.test”)
这很好用:
if [[ "test" -eq "test" ]]
then
echo "test compare"
fi
但如果我添加一个点,它就会失败
if [[ ".test" -eq ".test" ]]
then
echo "test compare"
fi
语法错误:预期操作数(错误标记为“.test”)