我是 bash 新手,需要一些简单的脚本。它运行 jar,并且必须找到“响应代码:XXX”。我需要这个响应代码(只是 XXX)。我试过这个:
URL=$1
echo $URL
callResult=`java -jar RESTCaller.jar $URL`
status=$?
if [ $status -eq 0 ]; then
result=`$callResult >> grep 'RESPONSE CODE' | cut -d':' -f 2`
else
echo error
fi
我明白了./run.sh: line 7: RESPONSE: command not found
我究竟做错了什么?