所以,让我说我有以下命令:
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或$()周围调用,如下所示:
原文链接:https://www.f2er.com/bash/384076.htmloutput=`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)