Linux

如何通過 Linux 命令行下載文件

  • April 12, 2010

我通常是 Windows 使用者,我目前正在使用 PuTTY 連接到執行 Fedora 8 的無頭 linux 機器。我需要下載最新的 JDK 並安裝它,但我必須使用命令行來完成。

我怎樣才能做到這一點?

您可以使用**wget**使用命令行下載文件:

wget http://domain.com/path/to/file

有關選項,請參見wget 手冊頁

你可以使用 wget


wget <http://www.domain.tld/path/to/file>

捲曲:


curl -O <http://www.domain.tld/path/to/file>

或者可能是猞猁:


lynx  <http://www.domain.tld/path/to/file>

有關選項,請參閱手冊頁。

引用自:https://serverfault.com/questions/75952