所以,让我说我有以下命令:
curl -I http://google.com | head -n 1| cut -d $' ' -f2
这将捕获http状态代码?? 现在我想将它分配给bash脚本中的变量..
like output = "curl -I http://localhost:8088/tracks?key=9 | head -n 1| cut -d $' ' -f2"
或类似的......
如何将上述命令的响应分配给bash中名为output的变量? 感谢
答案 0 :(得分:19)
You have two options。在后面的滴答或$()
周围进行调用,如下所示:
output=`curl -I http://google.com | head -n 1| cut -d $' ' -f2`
echo $output;
output=$(curl -I http://google.com | head -n 1| cut -d $' ' -f2)