我有一个看起来像这样的curl命令:
curl -X PUT -H "myheader:coca-cola" -d '{ "name":"harrypotter" }' http://mygoogle.com/service/books/123
按原样运行此命令将返回预期结果。
我正在尝试将此curl命令合并到我的bash脚本中,如下所示:
#!/bin/bash
MYURL=http://mygoogle.com/service/books/123
# Generate body for curl request
generate_put_data()
{
cat <<EOF
{
"name":"harrypotter"
}
EOF
}
put_data=$(echo "$(generate_put_data)")
put_data_with_single_quotes="'$put_data'"
# Generate headers for curl request
header=myheader:coca-cola
header_with_double_quotes="\"$header\""
# The following function takes two inputs - a simple string variable (with no spaces or quotes) and the curl command string
function run_cmd() {
echo $1
echo $2
#Run the curl command
"$2"
#Check return code of the curl command
if [ "$?" -ne 0 ]; then
#do something with simple string variable
echo "$1"
echo "Job failed"
exit 1
else
#do something with simple string variable
echo "$1"
echo "Job Succeeded"
fi
}
# Run the bash function - run_cmd
run_cmd "mysimplestring" "curl -X PUT -H $header_with_double_quotes -d $put_data_with_single_quotes $MYURL"
但是,当我尝试运行上面的bash脚本时,它在我用两个输入调用run_cmd()函数时失败了。我收到以下错误:
curl -X PUT -H "myheader:coca-cola" -d '{
"name":"harrypotter"
}' http://mygoogle.com/service/books/123: No such file or directory
Job failed
在run_cmd()函数声明中执行"$2"
的行上发生此错误。
有人可以帮我理解我哪里错了吗?谢谢!
答案 0 :(得分:0)
<OverlayTrigger trigger="hover" placement="right" overlay={tooltip}>
<Button bsStyle="default">Holy guacamole!</Button>
</OverlayTrigger>
这将采用第二个参数并尝试运行它而不进行任何单词拆分。它将它视为一个字符串。
你将在curl命令中作为一个字符串传递麻烦。如果你在没有引号的情况下传递它,你会做得更好,就像你在命令行输入它一样。您需要引用每个变量,但不要引用整个命令。
"$2"
请注意,您不再需要“with_quotes”变量。你不必做那样的事情。原始的普通值将起作用。
现在您可以使用数组语法访问命令:
run_cmd "mysimplestring" curl -X PUT -H "$header" -d "$put_data" "$MYURL"
顺便说一句,这是function run_cmd() {
local name=$1; shift
local cmd=("$@")
#Run the curl command
"${cmd[@]}"
}
:
echo
制作:
put_data=$(echo "$(generate_put_data)")