curl \
-H "Content-Type: application/json" \
-X POST \
$REPOSITORY_URL/engine-rest
http://10.195.177.141:31406已绑定到 REPOSITORY_URL。
curl: no URL specified!
curl: try 'curl --help' or 'curl --manual' for more information
答案1
尝试用以下代码包围变量${}
curl \
-H "Content-Type: application/json" \
-X POST \
${REPOSITORY_URL}/engine-rest
除非您的 URL 有限制curl
请求,否则该命令将按您的预期执行,否则curl
只会抓取错误文本。