我需要在 Red Hat Linux 中运行以下命令,但我还没有wget
安装。
wget -q -O http://somepage/somefile.cgi | bash
相当于什么curl
?
答案1
这应该可以。
curl -s http://somepage/somefile.cgi | sh
编辑:删除了 -O:不需要,因为它正在传输到 bash,正如@gravity 的评论所提到的。
我需要在 Red Hat Linux 中运行以下命令,但我还没有wget
安装。
wget -q -O http://somepage/somefile.cgi | bash
相当于什么curl
?
这应该可以。
curl -s http://somepage/somefile.cgi | sh
编辑:删除了 -O:不需要,因为它正在传输到 bash,正如@gravity 的评论所提到的。