Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-03 03:19:38 +0400
committerEric Andersen <andersen@codepoet.org>2000-10-03 03:19:38 +0400
commit25b669c144949816d3c9726c79dbd6e93d53ee8b (patch)
tree74f90fad907796eb599aeb495e223703f2cd741c /networking/wget.c
parentba1ff9b4eb4085b656a65df870865eeeb565fe5e (diff)
Try to guess an output filename
Diffstat (limited to 'networking/wget.c')
-rw-r--r--networking/wget.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 58801ee47..c95271b0d 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -56,10 +56,18 @@ int wget_main(int argc, char **argv)
usage(wget_usage);
}
}
- if (do_continue && !fname_out)
- fatalError("wget: cannot specify continue (-c) without a filename (-O)\n");
+
if (argc - optind != 1)
usage(wget_usage);
+
+ /* Guess an output filename */
+ if (!fname_out) {
+ fname_out = get_last_path_component(argv[optind]);
+ }
+
+ if (do_continue && !fname_out)
+ fatalError("wget: cannot specify continue (-c) without a filename (-O)\n");
+
/*
* Parse url into components.
*/