标签: linux http get wget
我正在尝试在另一个http请求中执行http请求。有没有办法通过linux中的命令行执行此操作?
wget http://request another wget http://request
答案 0 :(得分:2)
使用$()来替换命令的输出:
$()
wget http://someURL?param="$(wget -O - http://otherURL)"
-O -选项告诉wget将输出写入标准输出而不是文件。
-O -
wget