gpt4 book ai didi

linux - 是否可以抓取 wget 的最后一行?

转载 作者:IT王子 更新时间:2023-10-29 01:06:13 27 4
gpt4 key购买 nike

$ wget --output-document=/dev/null http://website.com/file.jpg

Resolving speedtest.sea01.softlayer.com... 67.228.112.250
Connecting to speedtest.sea01.softlayer.com|67.228.112.250|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1986284 (1.9M) [image/jpeg]
Saving to: `/dev/null'

2011-10-02 22:38:04 (337 KB/s) - `/dev/null' saved [1986284/1986284]

以上一切正常,但我想知道如何将最后一行存储在变量中或通过 GREP 传递它 ->/((.+))/

(我正在尝试解析平均 KB/s)

最佳答案

您可以重定向命令的输出。例如:

$ wget --output-document=/dev/null http://website.com/file.jpg 2>&1 | tee /tmp/somefile
$ tail -n 1 /tmp/somefile

关于linux - 是否可以抓取 wget 的最后一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7630907/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com