有时我会遇到无法使用 下载的文件wget
。所以也许有人可以给我提示?
例如我想通过以下链接下载: https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=2516&cf_id=24
所以我输入:
wget https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=2516&cf_id=24
wget
确实创建了一个同名的文件attachment.php?link_id=2516&cf_id=24
,但不幸的是它是空的。
我也用类似的选项测试过它--trust-server-names
,但是没有任何成功。
答案1
需要&
转义,因为它将前台任务放入后台。
因此,以下方法可行:
wget https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=2516\&cf_id=24