如何在bash中将curl的输出捕获到变量

时间:2014-08-15 03:40:09

标签: bash shell curl

所以,让我说我有以下命令:

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的变量? 感谢

1 个答案:

答案 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)