HTTP请求:有没有办法在Linux中的GET中进行GET

时间:2017-02-18 00:47:07

标签: linux http get wget

我正在尝试在另一个http请求中执行http请求。有没有办法通过linux中的命令行执行此操作?

wget http://request another wget http://request

1 个答案:

答案 0 :(得分:2)

使用$()来替换命令的输出:

wget http://someURL?param="$(wget -O - http://otherURL)"

-O -选项告诉wget将输出写入标准输出而不是文件。