所以,让我说我有以下命令:
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)
| 归档时间: |
|
| 查看次数: |
30295 次 |
| 最近记录: |