我去了 php 网站并尝试使用 wget(从 ssh)下载最新的 php。但似乎没有任何直接链接,只有镜像。
当我使用镜像链接下载时,它只会创建一个名为镜像的文件。
答案1
您需要点击主链接,然后您将被引导至一个页面,该页面包含来自不同镜像的所有下载。从那里您可以使用 wget
# wget http://us.php.net/get/php-5.3.5.tar.bz2/from/us3.php.net/mirror
--2011-01-19 05:08:48-- http://us.php.net/get/php-5.3.5.tar.bz2/from/us3.php.net/mirror
Resolving us.php.net... 208.69.120.58
Connecting to us.php.net|208.69.120.58|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://us3.php.net/distributions/php-5.3.5.tar.bz2 [following]
--2011-01-19 05:08:49-- http://us3.php.net/distributions/php-5.3.5.tar.bz2
Resolving us3.php.net... 192.41.42.26
Connecting to us3.php.net|192.41.42.26|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 10806092 (10M) [application/octet-stream]
Saving to: “php-5.3.5.tar.bz2”
答案2
-O filename
您还可以使用这样的选项wget -O outputfile http://example.com/your/path
并检索输出文件在您当前目录中。