diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-09-04 15:15:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-09-04 15:15:55 +0000 |
commit | 9670083818467b01349e1df4ce97abc3c25b5a43 (patch) | |
tree | eb2132593d8284699863129f0cc5c4e22a618565 /applets | |
parent | b92223b6f5848b2cdb41c3a6b9261b47826a5816 (diff) | |
download | busybox-9670083818467b01349e1df4ce97abc3c25b5a43.tar.gz |
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
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index 30ea1121d..0ffa94e09 100644 --- a/applets/busybox.c +++ b/applets/busybox.c @@ -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 |