gpt4 book ai didi

bash - 是否可以在 cURL 的输出前加上一个字符串?

转载 作者:行者123 更新时间:2023-11-29 09:27:57 26 4
gpt4 key购买 nike

查看 cURL 的手册页:

-w, --write-out <format>

Make curl display information on stdout after a completed transfer.

可以在何处使用此标志并将字符串附加到 cURL 的输出。然而,我只能将它附加到 cURL 输出的末尾,因为正如手册页所建议的那样,-w 标志在完成的传输之后附加。

这样做:

curl -sS "http:/somewebsite" -w "hello_world"

将产生:

$
contentfromcurl
hello_world

....那么你如何得到输出

$
hello_worldcontentfromcurl

即是否有可能让 -w prepend 而不是追加?

感谢@Adrian,这是最终答案 -

curl -sS "http:/somewebsite" | xargs echo "mystring"

干杯!

最佳答案

如果你真的很绝望,你可以制作一个代码块并包含一个 echo 。以下将具有您要查找的输出:

{ echo -n "hello_world"; curl -sS "http:/somewebsite"; }

至于获取-w选项来前置,答案是否定的:

-w, --write-out
Make curl display information on stdout after a completed transfer. The format is a string ...

关于bash - 是否可以在 cURL 的输出前加上一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29096486/

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