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

Moh*_*hit 8 bash shell curl

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

curl -I http://google.com | head -n 1| cut -d $' ' -f2
Run Code Online (Sandbox Code Playgroud)

这将捕获http状态代码?? 现在我想在bash脚本中将它赋给变量..

like output = "curl -I http://localhost:8088/tracks?key=9 | head -n 1| cut -d $' ' -f2" 
Run Code Online (Sandbox Code Playgroud)

或类似的东西..

如何将上述命令的响应分配给bash中名为output的变量?谢谢

小智 22

你有两个选择.在后面的滴答中围绕调用,或者$()像这样:

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)
Run Code Online (Sandbox Code Playgroud)