diff options
author | Bernhard Reutner-Fischer | 2007-04-05 10:31:47 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-04-05 10:31:47 +0000 |
commit | 2e75dcc80d6dd2ad8858d6c343d25e6a8c5e4812 (patch) | |
tree | 51e6afadebbdb032855e86f69476daa71734fac7 /include | |
parent | 6d79dd66cbeca350366103c8300c0335259e86a3 (diff) | |
download | busybox-2e75dcc80d6dd2ad8858d6c343d25e6a8c5e4812.zip busybox-2e75dcc80d6dd2ad8858d6c343d25e6a8c5e4812.tar.gz |
- add -s|--spider which only checks if the file exists but does not download it's content.
Closes #1291
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/usage.h b/include/usage.h index 1889010..f4edf05 100644 --- a/include/usage.h +++ b/include/usage.h @@ -3056,7 +3056,7 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when " %i File System ID in hex\n" \ " %l Maximum length of filenames\n" \ " %n File name\n" \ - " %s Block size (for faster transfers)\n" \ + " %s Block size (for faster transfer)\n" \ " %S Fundamental block size (for block counts)\n" \ " %t Type in hex\n" \ " %T Type in human readable form" \ @@ -3686,13 +3686,14 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when " 31 46 1365 /etc/passwd\n" #define wget_trivial_usage \ - "[-c|--continue] [-q|--quiet] [-O|--output-document file]\n" \ + "[-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document file]\n" \ " [--header 'header: value'] [-Y|--proxy on/off] [-P DIR]\n" \ " [-U|--user-agent agent] url" #define wget_full_usage \ "Retrieve files via HTTP or FTP" \ "\n\nOptions:\n" \ - " -c Continue retrieval of aborted transfers\n" \ + " -s Spider mode - only check file existence\n" \ + " -c Continue retrieval of aborted transfer\n" \ " -q Quiet\n" \ " -P Set directory prefix to DIR\n" \ " -O Save to filename ('-' for stdout)\n" \ |