我有以下代码
#!/bin/bash
export PATH=/usr/bin:/usr/local/bin
ssh -o PasswordAuthentication=no -q pspew@8.76.82.179 exit
test=$?
echo "return value is $test"
if [ $test -eq 127 ] ; then
echo "welcome"
fi
每当我执行脚本时,我都会得到 $test 并得到一些错误行
意外标记“fi”附近的语法错误