⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 news

📁 wget讓你可以在console介面下
💻
📖 第 1 页 / 共 2 页
字号:
GNU Wget NEWS -- history of user-visible changes.Copyright (C) 2005 Free Software Foundation, Inc.See the end for copying conditions.Please send GNU Wget bug reports to <bug-wget@gnu.org>.* Wget 1.10.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.10.** Downloading files larger than 2GB, sometimes referred to as "largefiles", now works on systems that support them.  This includes themajority of modern Unixes, as well as MS Windows.** IPv6 is now supported by Wget.  Unlike the experimental code in1.9, this version supports dual-family systems.  The new flags`--inet4' and `--inet6' (or `-4' and `-6' for short) force the use ofIPv4 and IPv6 respectively.  Note that IPv6 support has not yet beentested on Windows.** Microsoft's proprietary "NTLM" method of HTTP authentication is nowsupported.  This authentication method is undocumented and only usedby IIS.  Note that *proxy* authentication is not supported in thisrelease; you can only authenticate to the target web site.** Wget no longer truncates partially downloaded files when downloadhas to start over because the server doesn't support Range.  Instead,with such servers Wget now simply ignores the data up to the bytewhere the last attempt left off, and only then continues appending tothe file.  That way the downloaded file never shrinks, and downloadretries from servers without support for partial downloads work evenwhen downloading to stdout.** SSL/TLS changes:*** SSL/TLS downloads now attempt to verify the server's certificateagainst the recognized certificate authorities.  This requires CAcertificates to have been installed in a location visible to theOpenSSL library.  If this is not the case, you can get the bundleyourself from a source you trust (for example, the bundle extractedfrom Mozilla available at http://curl.haxx.se/docs/caextract.html),and point Wget to the PEM file using the `--ca-certificate'command-line option or the corresponding `.wgetrc' command.*** Secure downloads now verify that the host name in the URL matchesthe "common name" in the certificate presented by the server.*** Although the above checks provide more secure downloads, theyunavoidably break interoperability with some sites that worked withprevious versions, particularly those using self-signed, expired, orotherwise invalid certificates.  If you encounter "certificateverification" errors or complaints that "common name doesn't matchrequested host name" and are convinced of the site's authenticity, youcan use `--no-check-certificate' to bypass both checks.*** Talking to SSL/TLS servers over proxies now actually works.Previous versions of Wget erroneously sent GET requests for httpsURLs.  Wget 1.10 utilizes the CONNECT method designed for thispurpose.*** The SSL/TLS-related options have been redesigned and, for thefirst time, documented in the manual.  The old, undocumented, optionsare no longer supported.** Passive FTP is now the default FTP transfer mode.  Use`--no-passive-ftp' or specify `passive_ftp = off' in your init file torevert to the old behavior.** The `--header' option can now be used to override generatedheaders.  For example, `wget --header="Host: foo.bar"http://127.0.0.1' tells Wget to connect to localhost, but to specify"foo.bar" in the `Host' header.  In previous versions such use of`--header' lead to duplicate headers in HTTP requests.** The responses without headers, aka "HTTP 0.9" responses, aredetected and handled.  Although HTTP 0.9 has long been obsolete, it isstill occasionally used, sometimes by accident.** The progress bar is now updated regularly even when the data doesnot arrive from the network.** Wget no longer preserves permissions of files retrieved by FTP bydefault.  Anonymous FTP servers frequently use permissions like "664",which might not be what the user wants.  The new option`--preserve-permissions' and the corresponding `.wgetrc' variable canbe used to revert to the old behavior.** The new option `--protocol-directories' instructs Wget to also usethe protocol name as a directory component of local file names.** Options that previously unconditionally set or unset various flagsare now boolean options that can be invoked as either `--OPTION' or`--no-OPTION'.  Options that required an argument "on" or "off" havealso been changed this way, but they still accept the old syntax forbackward compatibility.  For example, instead of `--glob=off' you canwrite `--no-glob'.Allowing `--no-OPTION' for every `--OPTION' and the other way aroundis useful because it allows the user to override non-default behaviorspecified via `.wgetrc'.** The new option `--keep-session-cookies' causes `--save-cookies' tosave session cookies (normally only kept in memory) along with thepermanent ones.  This is useful because many sites track importantinformation, such as whether the user has authenticated, in sessioncookies.  With this option multiple Wget runs are treated as a singlebrowser session.** Wget now supports the --ftp-user and --ftp-password commandswitches to set username and password for FTP, and the --user and--password command switches to set username and password for both FTPand HTTP.  The --http-passwd and --proxy-passwd command switches havebeen renamed to --http-password and --proxy-password respectively, andthe related http_passwd and proxy_passwd .wgetrc commands tohttp_password and proxy_password respectively.  The login and passwd.wgetrc commands have been deprecated.* `wget -b' now works correctly under Windows.* Wget 1.9.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.9.** It is now possible to specify that POST method be used for HTTPrequests.  For example, `wget --post-data="id=foo&data=bar" URL' willsend a POST request with the specified contents.** IPv6 support is available, although it's still experimental.** The `--timeout' option now also affects DNS lookup and establishingthe TCP connection.  Previously it only affected reading and writingdata.  Those three timeouts can be set separately using`--dns-timeout', `--connection-timeout', and `--read-timeout',respectively.** Download speed shown by the progress bar is based on the datarecently read, rather than the average speed of the entire download.The ETA projection is still based on the overall average.** It is now possible to connect to FTP servers through FWTKfirewalls.  Set ftp_proxy to an FTP URL, and Wget will automaticallylog on to the proxy as "username@host".** The new option `--retry-connrefused' makes Wget retry downloadseven in the face of refused connections, which are otherwiseconsidered a fatal error.** The new option `--no-dns-cache' may be used to prevent Wget fromcaching DNS lookups.** Wget no longer escapes characters in local file names based onwhether they're appropriate in URLs.  Escaping can still occur fornonprintable characters or for '/', but no longer for frequentcharacters such as space.  You can use the new option--restrict-file-names to relax or strengthen these rules, which can beuseful if you dislike the default or if you're downloading tonon-native partitions.** Handling of HTML comments has been dumbed down to conform to whatusers expect and other browsers do: instead of being treated as SGMLdeclaration, a comment is terminated at the first occurrence of "-->".Use `--strict-comments' to revert to the old behavior.** Wget now correctly handles relative URIs that begin with "//", suchas "//img.foo.com/foo.jpg".** Boolean options in `.wgetrc' and on the command line now acceptvalues "yes" and "no" along with the traditional "on" and "off".** It is now possible to specify decimal values for timeouts, waitingperiods, and download rate.  For instance, `--wait=0.5' now works asexpected, as does `--dns-timeout=0.5' and even `--limit-rate=2.5k'.* Wget 1.8.2 is a bugfix release with no user-visible changes.* Wget 1.8.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.8.** A new progress indicator is now available and used by default.You can choose the progress bar type with `--progress=TYPE'.  Twotypes are available, "bar" (the new default), and "dot" (the olddotted indicator).  You can permanently revert to the old progressindicator by putting `progress = dot' in your `.wgetrc'.** You can limit the download rate of the retrieval using the`--limit-rate' option.  For example, `wget --limit-rate=15k URL' willtell Wget not to download the body of the URL faster than 15 kilobytesper second.** Recursive retrieval and link conversion have been revamped:*** Wget now traverses links breadth-first.  This makes thecalculation of depth much more reliable than before.  Also, recursivedownloads are faster and consume *significantly* less memory thanbefore.*** Links are converted only when the entire retrieval is complete.This is the only safe thing to do, as only then is it known what URLshave been downloaded.*** BASE tags are handled correctly when converting links.  Since Wgetalready resolves <base href="..."> when resolving handling URLs, linkconversion now makes the BASE tags point to an empty string.*** HTML anchors are now handled correctly.  Links to an anchor in thesame document (<a href="#anchorname">), which used to confuse Wget,are now converted correctly.*** When in page-requisites (-p) mode, no-parent (-np) is ignored whenretrieving for inline images, stylesheets, and other documents neededto display the page.*** Page-requisites (-p) mode now works with frames.  In other words,`wget -p URL-THAT-USES-FRAMES' will now download the frame HTML files,and all the files that they need to be displayed properly.** `--base' now works conjunction with `--input-file', providing abase for each URL and thereby allowing the URLs in the file to berelative.** If a host has more than one IP address, Wget uses the otheraddresses when accessing the first one fails.** Host directories now contain port information if the URL is at anon-standard port.** Wget now supports the robots.txt directives specified in<http://www.robotstxt.org/wc/norobots-rfc.txt>.** URL parser has been fixed, especially the infamous overzealousquoting.  Wget no longer dequotes reserved characters, e.g. `%3F' isno longer translated to `?', nor `%2B' to `+'.  Unsafe characterswhich are not reserved are still escaped, of course.** No more than 20 successive redirections are allowed.* Wget 1.7.1 is a bugfix release with no user-visible changes.* Changes in Wget 1.7.** SSL (`https') pages now work if you compile Wget with SSL support;use the `--with-ssl' configure flag.  You need to have OpenSSLinstalled.** Cookies are now supported.  Wget will accept cookies sent by theserver and return them in later requests.  Additionally, it can loadand save cookies to disk, in the same format that Netscape uses.** "Keep-alive" (persistent) HTTP connections are now supported.Using keep-alive allows Wget to share one TCP/IP connection formany retrievals, making multiple-file downloads faster and lessstressing for the server and the network.** Wget now recognizes FTP directory listings generated by NT and VMSservers.** It is now possible to recurse through FTP sites where logging inputs you in some directory other than '/'.** You may now use `~' to mean home directory in `.wgetrc'.  Forexample, `load_cookies = ~/.netscape/cookies.txt' works as you wouldexpect.** The HTML parser has been rewritten.  The new one works morereliably, allows finer-grained control over which tags and attributesare detected, and has better support for some features like correctlyskipping comments and declarations, decoding entities, etc.  It isalso more general.** <meta name="robots"> tags are now respected.** Wget's internal tables now use hash tables instead of linked listswhere appropriate.  This results in huge speedups when retrievinglarge sites (thousands of documents).** Wget now has a man page, automatically generated from the Texinfodocumentation.  (The last version that shipped with a man page was1.4.5).  To get this, you need to have pod2man from the Perldistribution installed on your system.* Changes in Wget 1.6

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -