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

前端之家收集整理的这篇文章主要介绍了如何在bash中将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的变量?
谢谢

You have two options.在后面的ticks或$()周围调用,如下所示:
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)
原文链接:https://www.f2er.com/bash/384076.html

猜你在找的Bash相关文章