如何用Wget发送GET请求并在屏幕上输出
How to send a GET request with Wget and output it on the screen
下面的命令使用 Wget 命令成功将 GET 请求发送到安全服务器,该命令将输出保存在同一目录的“response_from_API_server.json”文件中。
有什么方法可以在屏幕上显示命令输出而不是将其保存到文件中吗?
示例代码:
wget -S --ca-cert=/etc/ssl/AAA.crt
--certificate=/etc/ssl/BBB.csp-DDD@EEE.cert.pem
--private-key=/etc/ssl/BBB.csp-DDD@EEE.cert.key.pem
--header="Accept-Encoding: gzip, deflate"
--header='Accept-Charset: UTF-8'
--header='Content-Type: application/json' -O response_from_API_server.json
--post-data '{"email": "info@mail.com", "accountID": "myaccount1234"}' https: //examplewebsite.com//ourUsers/findAccount
尝试 -O-
而不是 -O response_from_API_server.json
。它没有将响应保存到文件,而是打印到标准输出。
下面的命令使用 Wget 命令成功将 GET 请求发送到安全服务器,该命令将输出保存在同一目录的“response_from_API_server.json”文件中。
有什么方法可以在屏幕上显示命令输出而不是将其保存到文件中吗?
示例代码:
wget -S --ca-cert=/etc/ssl/AAA.crt
--certificate=/etc/ssl/BBB.csp-DDD@EEE.cert.pem
--private-key=/etc/ssl/BBB.csp-DDD@EEE.cert.key.pem
--header="Accept-Encoding: gzip, deflate"
--header='Accept-Charset: UTF-8'
--header='Content-Type: application/json' -O response_from_API_server.json
--post-data '{"email": "info@mail.com", "accountID": "myaccount1234"}' https: //examplewebsite.com//ourUsers/findAccount
尝试 -O-
而不是 -O response_from_API_server.json
。它没有将响应保存到文件,而是打印到标准输出。