curl -H 'Content-Type: application/json' -d "{\"msgtype\": \"text\",\"text\": {\"content\": \"$ {msg}\"}}" $ding 这段代码目的是使消息体可以控制,用变量代替,zsh bash运行均完好 curl -H 'Content-Type: application/json' -d '{"msgtype": "text","text": {"content": "'${msg}'"}}' $ding 单引号外包 在zsh下可运行,在bash下运行出错
原因不明!!!
归咎于两个shell代码解析…