Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.

Very cool.  Still lacks "chunked" transfer-coding, so not totally RFC
compliant for HTTP1.1, but very nice nonethe less, and very small.
 -Erik
This commit is contained in:
Eric Andersen
2000-09-04 15:15:55 +00:00
parent b92223b6f5
commit 9670083818
6 changed files with 537 additions and 0 deletions

View File

@ -328,6 +328,9 @@ const struct BB_applet applets[] = {
#ifdef BB_WC
{"wc", wc_main, _BB_DIR_USR_BIN, wc_usage},
#endif
#ifdef BB_WGET
{"wget", wget_main, _BB_DIR_USR_BIN, wget_usage},
#endif
#ifdef BB_WHICH
{"which", which_main, _BB_DIR_USR_BIN, which_usage},
#endif