如果不使用 Wget 或 Curl,如何从命令行下载文件?
答案1
使用 FTP:
ftp -A -v mirrors.sonic.net <<eof
binary
get cygwin/x86_64/setup.xz setup.xz
eof
使用 OpenSSL - 注意这仅适用于 HTTPS:
openssl s_client -quiet -connect superuser.com:443 <<eof
GET / HTTP/1.0
Host: superuser.com
eof
使用 lynx:
lynx -source example.com > index.html
答案2
这适用telnet
于lynx
:
(echo 'GET /'; echo; sleep 1; ) | telnet example.com 80