如何下载动态提供的文件

如何下载动态提供的文件

我遇到过几次这种情况,当时一个网站提供变量文件,我试图下载

wget http://trac-hacks.org/changeset/latest/tracajaxcommentsplugin?old_path=/&filename=tracajaxcommentsplugin&format=zip

预期文件

tracajaxcommentsplugin-r10913.ziptracajaxcommentsplugin\?old_path\=%2F相反,我得到了一个包含内容的 文件

<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" ...

该问题并不特定于 trac 或该特定文件。

答案1

用单引号括起来:

$ wget 'http://trac-hacks.org/changeset/latest/tracajaxcommentsplugin?old_path=/&filename=tracajaxcommentsplugin&format=zip' -O tracajaxcommentsplugin-r10913.zip

相关内容