]> sjero.net Git - wget/blob - src/main.c
d1735246339a821eff580bb558bf2bdd28a27849
[wget] / src / main.c
1 /* Command line parsing.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
3
4 This file is part of Wget.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #ifdef HAVE_UNISTD_H
25 # include <unistd.h>
26 #endif /* HAVE_UNISTD_H */
27 #include <sys/types.h>
28 #ifdef HAVE_STRING_H
29 # include <string.h>
30 #else
31 # include <strings.h>
32 #endif /* HAVE_STRING_H */
33 #ifdef HAVE_SIGNAL_H
34 # include <signal.h>
35 #endif
36 #ifdef HAVE_NLS
37 #ifdef HAVE_LOCALE_H
38 # include <locale.h>
39 #endif /* HAVE_LOCALE_H */
40 #endif /* HAVE_NLS */
41 #include <errno.h>
42
43 #define OPTIONS_DEFINED_HERE    /* for options.h */
44
45 #include "wget.h"
46 #include "utils.h"
47 #include "getopt.h"
48 #include "init.h"
49 #include "retr.h"
50 #include "recur.h"
51 #include "host.h"
52 #include "cookies.h"
53
54 #ifndef PATH_SEPARATOR
55 # define PATH_SEPARATOR '/'
56 #endif
57
58 extern char *version_string;
59
60 #ifndef errno
61 extern int errno;
62 #endif
63
64 struct options opt;
65
66 /* From log.c.  */
67 void log_init PARAMS ((const char *, int));
68 void log_close PARAMS ((void));
69 void redirect_output PARAMS ((const char *));
70
71 static RETSIGTYPE redirect_output_signal PARAMS ((int));
72
73 const char *exec_name;
74 \f
75 /* Initialize I18N.  The initialization amounts to invoking
76    setlocale(), bindtextdomain() and textdomain().
77    Does nothing if NLS is disabled or missing.  */
78 static void
79 i18n_initialize (void)
80 {
81   /* If HAVE_NLS is defined, assume the existence of the three
82      functions invoked here.  */
83 #ifdef HAVE_NLS
84   /* Set the current locale.  */
85   /* Here we use LC_MESSAGES instead of LC_ALL, for two reasons.
86      First, message catalogs are all of I18N Wget uses anyway.
87      Second, setting LC_ALL has a dangerous potential of messing
88      things up.  For example, when in a foreign locale, Solaris
89      strptime() fails to handle international dates correctly, which
90      makes http_atotm() malfunction.  */
91 #ifdef LC_MESSAGES
92   setlocale (LC_MESSAGES, "");
93   setlocale (LC_CTYPE, "");
94 #else
95   setlocale (LC_ALL, "");
96 #endif
97   /* Set the text message domain.  */
98   bindtextdomain ("wget", LOCALEDIR);
99   textdomain ("wget");
100 #endif /* HAVE_NLS */
101 }
102
103 /* It's kosher to declare these here because their interface _has_ to
104    be void foo(void).  */
105 void host_init PARAMS ((void));
106
107 /* This just calls the various initialization functions from the
108    modules that need one-time initialization. */
109 static void
110 private_initialize (void)
111 {
112   host_init ();
113 }
114 \f
115 /* Print the usage message.  */
116 static void
117 print_usage (void)
118 {
119   printf (_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
120 }
121
122 /* Print the help message, describing all the available options.  If
123    you add an option, be sure to update this list.  */
124 static void
125 print_help (void)
126 {
127   printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
128           version_string);
129   print_usage ();
130   /* Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
131      don't bitch.  Also, it makes translation much easier.  */
132   fputs (_("\
133 \n\
134 Mandatory arguments to long options are mandatory for short options too.\n\
135 \n"), stdout);
136   fputs (_("\
137 Startup:\n\
138   -V,  --version           display the version of Wget and exit.\n\
139   -h,  --help              print this help.\n\
140   -b,  --background        go to background after startup.\n\
141   -e,  --execute=COMMAND   execute a `.wgetrc\'-style command.\n\
142 \n"), stdout);
143   fputs (_("\
144 Logging and input file:\n\
145   -o,  --output-file=FILE     log messages to FILE.\n\
146   -a,  --append-output=FILE   append messages to FILE.\n\
147   -d,  --debug                print debug output.\n\
148   -q,  --quiet                quiet (no output).\n\
149   -v,  --verbose              be verbose (this is the default).\n\
150   -nv, --non-verbose          turn off verboseness, without being quiet.\n\
151   -i,  --input-file=FILE      download URLs found in FILE.\n\
152   -F,  --force-html           treat input file as HTML.\n\
153   -B,  --base=URL             prepends URL to relative links in -F -i file.\n\
154        --sslcertfile=FILE     optional client certificate.\n\
155        --sslcertkey=KEYFILE   optional keyfile for this certificate.\n\
156 \n"), stdout);
157   fputs (_("\
158 Download:\n\
159        --bind-address=ADDRESS   bind to ADDRESS (hostname or IP) on local host.\n\
160   -t,  --tries=NUMBER           set number of retries to NUMBER (0 unlimits).\n\
161   -O   --output-document=FILE   write documents to FILE.\n\
162   -nc, --no-clobber             don\'t clobber existing files or use .# suffixes.\n\
163   -c,  --continue               resume getting a partially-downloaded file.\n\
164        --dot-style=STYLE        set retrieval display style.\n\
165   -N,  --timestamping           don\'t re-retrieve files unless newer than local.\n\
166   -S,  --server-response        print server response.\n\
167        --spider                 don\'t download anything.\n\
168   -T,  --timeout=SECONDS        set the read timeout to SECONDS.\n\
169   -w,  --wait=SECONDS           wait SECONDS between retrievals.\n\
170        --waitretry=SECONDS      wait 1...SECONDS between retries of a retrieval.\n\
171   -Y,  --proxy=on/off           turn proxy on or off.\n\
172   -Q,  --quota=NUMBER           set retrieval quota to NUMBER.\n\
173 \n"), stdout);
174   fputs (_("\
175 Directories:\n\
176   -nd  --no-directories            don\'t create directories.\n\
177   -x,  --force-directories         force creation of directories.\n\
178   -nH, --no-host-directories       don\'t create host directories.\n\
179   -P,  --directory-prefix=PREFIX   save files to PREFIX/...\n\
180        --cut-dirs=NUMBER           ignore NUMBER remote directory components.\n\
181 \n"), stdout);
182   fputs (_("\
183 HTTP options:\n\
184        --http-user=USER      set http user to USER.\n\
185        --http-passwd=PASS    set http password to PASS.\n\
186   -C,  --cache=on/off        (dis)allow server-cached data (normally allowed).\n\
187   -E,  --html-extension      save all text/html documents with .html extension.\n\
188        --ignore-length       ignore `Content-Length\' header field.\n\
189        --header=STRING       insert STRING among the headers.\n\
190        --proxy-user=USER     set USER as proxy username.\n\
191        --proxy-passwd=PASS   set PASS as proxy password.\n\
192        --referer=URL         include `Referer: URL\' header in HTTP request.\n\
193   -s,  --save-headers        save the HTTP headers to file.\n\
194   -U,  --user-agent=AGENT    identify as AGENT instead of Wget/VERSION.\n\
195        --cookies=off         don't use cookies.\n\
196        --load-cookies=FILE   load cookies from FILE before session.\n\
197        --save-cookies=FILE   save cookies to FILE after session.\n\
198 \n"), stdout);
199   fputs (_("\
200 FTP options:\n\
201   -nr, --dont-remove-listing   don\'t remove `.listing\' files.\n\
202   -g,  --glob=on/off           turn file name globbing on or off.\n\
203        --passive-ftp           use the \"passive\" transfer mode.\n\
204        --retr-symlinks         when recursing, get linked-to files (not dirs).\n\
205 \n"), stdout);
206   fputs (_("\
207 Recursive retrieval:\n\
208   -r,  --recursive          recursive web-suck -- use with care!\n\
209   -l,  --level=NUMBER       maximum recursion depth (inf or 0 for infinite).\n\
210        --delete-after       delete files locally after downloading them.\n\
211   -k,  --convert-links      convert non-relative links to relative.\n\
212   -K,  --backup-converted   before converting file X, back up as X.orig.\n\
213   -m,  --mirror             shortcut option equivalent to -r -N -l inf -nr.\n\
214   -p,  --page-requisites    get all images, etc. needed to display HTML page.\n\
215 \n"), stdout);
216   fputs (_("\
217 Recursive accept/reject:\n\
218   -A,  --accept=LIST                comma-separated list of accepted extensions.\n\
219   -R,  --reject=LIST                comma-separated list of rejected extensions.\n\
220   -D,  --domains=LIST               comma-separated list of accepted domains.\n\
221        --exclude-domains=LIST       comma-separated list of rejected domains.\n\
222        --follow-ftp                 follow FTP links from HTML documents.\n\
223        --follow-tags=LIST           comma-separated list of followed HTML tags.\n\
224   -G,  --ignore-tags=LIST           comma-separated list of ignored HTML tags.\n\
225   -H,  --span-hosts                 go to foreign hosts when recursive.\n\
226   -L,  --relative                   follow relative links only.\n\
227   -I,  --include-directories=LIST   list of allowed directories.\n\
228   -X,  --exclude-directories=LIST   list of excluded directories.\n\
229   -nh, --no-host-lookup             don\'t DNS-lookup hosts.\n\
230   -np, --no-parent                  don\'t ascend to the parent directory.\n\
231 \n"), stdout);
232   fputs (_("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n"),
233          stdout);
234 }
235 \f
236 int
237 main (int argc, char *const *argv)
238 {
239   char **url, **t;
240   int i, c, nurl, status, append_to_log;
241   int wr = 0;
242
243   static struct option long_options[] =
244   {
245     /* Options without arguments: */
246     { "background", no_argument, NULL, 'b' },
247     { "backup-converted", no_argument, NULL, 'K' },
248     { "continue", no_argument, NULL, 'c' },
249     { "convert-links", no_argument, NULL, 'k' },
250     { "debug", no_argument, NULL, 'd' },
251     { "delete-after", no_argument, NULL, 136 },
252     { "dont-remove-listing", no_argument, NULL, 149 },
253     { "follow-ftp", no_argument, NULL, 142 },
254     { "force-directories", no_argument, NULL, 'x' },
255     { "force-hier", no_argument, NULL, 'x' }, /* obsolete */
256     { "force-html", no_argument, NULL, 'F'},
257     { "help", no_argument, NULL, 'h' },
258     { "html-extension", no_argument, NULL, 'E' },
259     { "ignore-length", no_argument, NULL, 138 },
260     { "mirror", no_argument, NULL, 'm' },
261     { "no-clobber", no_argument, NULL, 141 },
262     { "no-directories", no_argument, NULL, 147 },
263     { "no-host-directories", no_argument, NULL, 148 },
264     { "no-host-lookup", no_argument, NULL, 150 },
265     { "no-http-keep-alive", no_argument, NULL, 156 },
266     { "no-parent", no_argument, NULL, 133 },
267     { "non-verbose", no_argument, NULL, 146 },
268     { "passive-ftp", no_argument, NULL, 139 },
269     { "page-requisites", no_argument, NULL, 'p' },
270     { "quiet", no_argument, NULL, 'q' },
271     { "recursive", no_argument, NULL, 'r' },
272     { "relative", no_argument, NULL, 'L' },
273     { "retr-symlinks", no_argument, NULL, 137 },
274     { "save-headers", no_argument, NULL, 's' },
275     { "server-response", no_argument, NULL, 'S' },
276     { "span-hosts", no_argument, NULL, 'H' },
277     { "spider", no_argument, NULL, 132 },
278     { "timestamping", no_argument, NULL, 'N' },
279     { "verbose", no_argument, NULL, 'v' },
280     { "version", no_argument, NULL, 'V' },
281
282     /* Options accepting an argument: */
283     { "accept", required_argument, NULL, 'A' },
284     { "append-output", required_argument, NULL, 'a' },
285     { "backups", required_argument, NULL, 151 }, /* undocumented */
286     { "base", required_argument, NULL, 'B' },
287     { "bind-address", required_argument, NULL, 155 },
288     { "cache", required_argument, NULL, 'C' },
289     { "cookies", required_argument, NULL, 160 },
290     { "cut-dirs", required_argument, NULL, 145 },
291     { "directory-prefix", required_argument, NULL, 'P' },
292     { "domains", required_argument, NULL, 'D' },
293     { "dot-style", required_argument, NULL, 134 },
294     { "execute", required_argument, NULL, 'e' },
295     { "exclude-directories", required_argument, NULL, 'X' },
296     { "exclude-domains", required_argument, NULL, 140 },
297     { "follow-tags", required_argument, NULL, 153 },
298     { "glob", required_argument, NULL, 'g' },
299     { "header", required_argument, NULL, 131 },
300     { "htmlify", required_argument, NULL, 135 },
301     { "http-passwd", required_argument, NULL, 130 },
302     { "http-user", required_argument, NULL, 129 },
303     { "ignore-tags", required_argument, NULL, 'G' },
304     { "include-directories", required_argument, NULL, 'I' },
305     { "input-file", required_argument, NULL, 'i' },
306     { "level", required_argument, NULL, 'l' },
307     { "load-cookies", required_argument, NULL, 161 },
308     { "no", required_argument, NULL, 'n' },
309     { "output-document", required_argument, NULL, 'O' },
310     { "output-file", required_argument, NULL, 'o' },
311     { "proxy", required_argument, NULL, 'Y' },
312     { "proxy-passwd", required_argument, NULL, 144 },
313     { "proxy-user", required_argument, NULL, 143 },
314     { "quota", required_argument, NULL, 'Q' },
315     { "reject", required_argument, NULL, 'R' },
316     { "save-cookies", required_argument, NULL, 162 },
317     { "timeout", required_argument, NULL, 'T' },
318     { "tries", required_argument, NULL, 't' },
319     { "user-agent", required_argument, NULL, 'U' },
320     { "referer", required_argument, NULL, 157 },
321     { "use-proxy", required_argument, NULL, 'Y' },
322 #ifdef HAVE_SSL
323     { "sslcertfile", required_argument, NULL, 158 },
324     { "sslcertkey", required_argument, NULL, 159 },
325 #endif /* HAVE_SSL */
326     { "wait", required_argument, NULL, 'w' },
327     { "waitretry", required_argument, NULL, 152 },
328     { 0, 0, 0, 0 }
329   };
330
331   i18n_initialize ();
332   private_initialize ();
333
334   append_to_log = 0;
335
336   /* Construct the name of the executable, without the directory part.  */
337   exec_name = strrchr (argv[0], PATH_SEPARATOR);
338   if (!exec_name)
339     exec_name = argv[0];
340   else
341     ++exec_name;
342
343 #ifdef WINDOWS
344   windows_main_junk (&argc, (char **) argv, (char **) &exec_name);
345 #endif
346
347   initialize (); /* sets option defaults; reads the system wgetrc and .wgetrc */
348
349   /* [Is the order of the option letters significant?  If not, they should be
350       alphabetized, like the long_options.  The only thing I know for sure is
351       that the options with required arguments must be followed by a ':'.
352       -- Dan Harkless <wget@harkless.org>] */
353   while ((c = getopt_long (argc, argv, "\
354 hpVqvdkKsxmNWrHSLcFbEY:G:g:T:U:O:l:n:i:o:a:t:D:A:R:P:B:e:Q:X:I:w:C:",
355                            long_options, (int *)0)) != EOF)
356     {
357       switch (c)
358         {
359           /* Options without arguments: */
360         case 132:
361           setval ("spider", "on");
362           break;
363         case 133:
364           setval ("noparent", "on");
365           break;
366         case 136:
367           setval ("deleteafter", "on");
368           break;
369         case 137:
370           setval ("retrsymlinks", "on");
371           break;
372         case 138:
373           setval ("ignorelength", "on");
374           break;
375         case 139:
376           setval ("passiveftp", "on");
377           break;
378         case 141:
379           setval ("noclobber", "on");
380           break;
381         case 142:
382           setval ("followftp", "on");
383           break;
384         case 145:
385           setval ("cutdirs", optarg);
386           break;
387         case 146:
388           setval ("verbose", "off");
389           break;
390         case 147:
391           setval ("dirstruct", "off");
392           break;
393         case 148:
394           setval ("addhostdir", "off");
395           break;
396         case 149:
397           setval ("removelisting", "off");
398           break;
399         case 150:
400           setval ("simplehostcheck", "on");
401           break;
402         case 155:
403           setval ("bindaddress", optarg);
404           break;
405         case 156:
406           setval ("httpkeepalive", "off");
407           break;
408         case 'b':
409           setval ("background", "on");
410           break;
411         case 'c':
412           setval ("continue", "on");
413           break;
414         case 'd':
415 #ifdef DEBUG
416           setval ("debug", "on");
417 #else  /* not DEBUG */
418           fprintf (stderr, _("%s: debug support not compiled in.\n"),
419                    exec_name);
420 #endif /* not DEBUG */
421           break;
422         case 'E':
423           setval ("htmlextension", "on");
424           break;
425         case 'F':
426           setval ("forcehtml", "on");
427           break;
428         case 'H':
429           setval ("spanhosts", "on");
430           break;
431         case 'h':
432           print_help ();
433 #ifdef WINDOWS
434           ws_help (exec_name);
435 #endif
436           exit (0);
437           break;
438         case 'K':
439           setval ("backupconverted", "on");
440           break;
441         case 'k':
442           setval ("convertlinks", "on");
443           break;
444         case 'L':
445           setval ("relativeonly", "on");
446           break;
447         case 'm':
448           setval ("mirror", "on");
449           break;
450         case 'N':
451           setval ("timestamping", "on");
452           break;
453         case 'p':
454           setval ("pagerequisites", "on");
455           break;
456         case 'S':
457           setval ("serverresponse", "on");
458           break;
459         case 's':
460           setval ("saveheaders", "on");
461           break;
462         case 'q':
463           setval ("quiet", "on");
464           break;
465         case 'r':
466           setval ("recursive", "on");
467           break;
468         case 'V':
469           printf ("GNU Wget %s\n\n", version_string);
470           printf ("%s", _("\
471 Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.\n\
472 This program is distributed in the hope that it will be useful,\n\
473 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
474 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
475 GNU General Public License for more details.\n"));
476           printf (_("\nOriginally written by Hrvoje Niksic <hniksic@arsdigita.com>.\n"));
477           exit (0);
478           break;
479         case 'v':
480           setval ("verbose", "on");
481           break;
482         case 'x':
483           setval ("dirstruct", "on");
484           break;
485
486           /* Options accepting an argument: */
487         case 129:
488           setval ("httpuser", optarg);
489           break;
490         case 130:
491           setval ("httppasswd", optarg);
492           break;
493         case 131:
494           setval ("header", optarg);
495           break;
496         case 134:
497           setval ("dotstyle", optarg);
498           break;
499         case 135:
500           setval ("htmlify", optarg);
501           break;
502         case 140:
503           setval ("excludedomains", optarg);
504           break;
505         case 143:
506           setval ("proxyuser", optarg);
507           break;
508         case 144:
509           setval ("proxypasswd", optarg);
510           break;
511         case 151:
512           setval ("backups", optarg);
513           break;
514         case 152:
515           setval ("waitretry", optarg);
516           wr = 1;
517           break;
518         case 153:
519           setval ("followtags", optarg);
520           break;
521         case 160:
522           setval ("cookies", optarg);
523           break;
524         case 161:
525           setval ("loadcookies", optarg);
526           break;
527         case 162:
528           setval ("savecookies", optarg);
529           break;
530         case 157:
531           setval ("referer", optarg);
532           break;
533 #ifdef HAVE_SSL
534         case 158:
535           setval ("sslcertfile", optarg);
536           break;
537         case 159:
538           setval ("sslcertkey", optarg);
539           break;
540 #endif /* HAVE_SSL */
541         case 'A':
542           setval ("accept", optarg);
543           break;
544         case 'a':
545           setval ("logfile", optarg);
546           append_to_log = 1;
547           break;
548         case 'B':
549           setval ("base", optarg);
550           break;
551         case 'C':
552           setval ("cache", optarg);
553           break;
554         case 'D':
555           setval ("domains", optarg);
556           break;
557         case 'e':
558           {
559             char *com, *val;
560             if (parse_line (optarg, &com, &val))
561               {
562                 if (!setval (com, val))
563                   exit (1);
564               }
565             else
566               {
567                 fprintf (stderr, _("%s: %s: invalid command\n"), exec_name,
568                          optarg);
569                 exit (1);
570               }
571             xfree (com);
572             xfree (val);
573           }
574           break;
575         case 'G':
576           setval ("ignoretags", optarg);
577           break;
578         case 'g':
579           setval ("glob", optarg);
580           break;
581         case 'I':
582           setval ("includedirectories", optarg);
583           break;
584         case 'i':
585           setval ("input", optarg);
586           break;
587         case 'l':
588           setval ("reclevel", optarg);
589           break;
590         case 'n':
591           {
592             /* #### The n? options are utter crock!  */
593             char *p;
594
595             for (p = optarg; *p; p++)
596               switch (*p)
597                 {
598                 case 'v':
599                   setval ("verbose", "off");
600                   break;
601                 case 'h':
602                   setval ("simplehostcheck", "on");
603                   break;
604                 case 'H':
605                   setval ("addhostdir", "off");
606                   break;
607                 case 'd':
608                   setval ("dirstruct", "off");
609                   break;
610                 case 'c':
611                   setval ("noclobber", "on");
612                   break;
613                 case 'r':
614                   setval ("removelisting", "off");
615                   break;
616                 case 'p':
617                   setval ("noparent", "on");
618                   break;
619                 case 'k':
620                   setval ("httpkeepalive", "off");
621                   break;
622                 default:
623                   printf (_("%s: illegal option -- `-n%c'\n"), exec_name, *p);
624                   print_usage ();
625                   printf ("\n");
626                   printf (_("Try `%s --help\' for more options.\n"), exec_name);
627                   exit (1);
628                 }
629             break;
630           }
631         case 'O':
632           setval ("outputdocument", optarg);
633           break;
634         case 'o':
635           setval ("logfile", optarg);
636           break;
637         case 'P':
638           setval ("dirprefix", optarg);
639           break;
640         case 'Q':
641           setval ("quota", optarg);
642           break;
643         case 'R':
644           setval ("reject", optarg);
645           break;
646         case 'T':
647           setval ("timeout", optarg);
648           break;
649         case 't':
650           setval ("tries", optarg);
651           break;
652         case 'U':
653           setval ("useragent", optarg);
654           break;
655         case 'w':
656           setval ("wait", optarg);
657           break;
658         case 'X':
659           setval ("excludedirectories", optarg);
660           break;
661         case 'Y':
662           setval ("useproxy", optarg);
663           break;
664
665         case '?':
666           print_usage ();
667           printf ("\n");
668           printf (_("Try `%s --help' for more options.\n"), exec_name);
669           exit (0);
670           break;
671         }
672     }
673
674   /* All user options have now been processed, so it's now safe to do
675      interoption dependency checks. */
676
677   if (opt.reclevel == 0)
678     opt.reclevel = INFINITE_RECURSION;  /* see wget.h for commentary on this */
679
680   if (opt.page_requisites && !opt.recursive)
681     {
682       opt.recursive = TRUE;
683       opt.reclevel = 0;
684       if (!opt.no_dirstruct)
685         opt.dirstruct = TRUE;  /* usually handled by cmd_spec_recursive() */
686     }
687
688   if (opt.verbose == -1)
689     opt.verbose = !opt.quiet;
690
691   /* Retain compatibility with previous scripts.
692      if wait has been set, but waitretry has not, give it the wait value.
693      A simple check on the values is not enough, I could have set
694      wait to n>0 and waitretry to 0 - HEH */
695   if (opt.wait && !wr)
696     {
697       char  opt_wait_str[256];  /* bigger than needed buf to prevent overflow */
698
699       sprintf(opt_wait_str, "%ld", opt.wait);
700       setval ("waitretry", opt_wait_str);
701     }
702     
703   /* Sanity checks.  */
704   if (opt.verbose && opt.quiet)
705     {
706       printf (_("Can't be verbose and quiet at the same time.\n"));
707       print_usage ();
708       exit (1);
709     }
710   if (opt.timestamping && opt.noclobber)
711     {
712       printf (_("\
713 Can't timestamp and not clobber old files at the same time.\n"));
714       print_usage ();
715       exit (1);
716     }
717   nurl = argc - optind;
718   if (!nurl && !opt.input_filename)
719     {
720       /* No URL specified.  */
721       printf (_("%s: missing URL\n"), exec_name);
722       print_usage ();
723       printf ("\n");
724       /* #### Something nicer should be printed here -- similar to the
725          pre-1.5 `--help' page.  */
726       printf (_("Try `%s --help' for more options.\n"), exec_name);
727       exit (1);
728     }
729
730   if (opt.background)
731     fork_to_background ();
732
733   /* Allocate basic pointer.  */
734   url = ALLOCA_ARRAY (char *, nurl + 1);
735   /* Fill in the arguments.  */
736   for (i = 0; i < nurl; i++, optind++)
737     {
738       char *irix4_cc_needs_this;
739       STRDUP_ALLOCA (irix4_cc_needs_this, argv[optind]);
740       url[i] = irix4_cc_needs_this;
741     }
742   url[i] = NULL;
743
744   /* Change the title of console window on Windows.  #### I think this
745      statement should belong to retrieve_url().  --hniksic.  */
746 #ifdef WINDOWS
747   ws_changetitle (*url, nurl);
748 #endif
749
750   /* Initialize logging.  */
751   log_init (opt.lfilename, append_to_log);
752
753   DEBUGP (("DEBUG output created by Wget %s on %s.\n\n", version_string,
754            OS_TYPE));
755
756   /* Open the output filename if necessary.  */
757   if (opt.output_document)
758     {
759       if (HYPHENP (opt.output_document))
760         opt.dfp = stdout;
761       else
762         {
763           struct stat st;
764           opt.dfp = fopen (opt.output_document, opt.always_rest ? "ab" : "wb");
765           if (opt.dfp == NULL)
766             {
767               perror (opt.output_document);
768               exit (1);
769             }
770           if (fstat (fileno (opt.dfp), &st) == 0 && S_ISREG (st.st_mode))
771             opt.od_known_regular = 1;
772         }
773     }
774
775 #ifdef WINDOWS
776   ws_startup ();
777 #endif
778
779   /* Setup the signal handler to redirect output when hangup is
780      received.  */
781 #ifdef HAVE_SIGNAL
782   if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
783     signal(SIGHUP, redirect_output_signal);
784   /* ...and do the same for SIGUSR1.  */
785   signal (SIGUSR1, redirect_output_signal);
786   /* Writing to a closed socket normally signals SIGPIPE, and the
787      process exits.  What we want is to ignore SIGPIPE and just check
788      for the return value of write().  */
789   signal (SIGPIPE, SIG_IGN);
790 #endif /* HAVE_SIGNAL */
791
792   status = RETROK;              /* initialize it, just-in-case */
793   recursive_reset ();
794   /* Retrieve the URLs from argument list.  */
795   for (t = url; *t; t++)
796     {
797       char *filename, *redirected_URL;
798       int dt;
799
800       status = retrieve_url (*t, &filename, &redirected_URL, NULL, &dt);
801       if (opt.recursive && status == RETROK && (dt & TEXTHTML))
802         status = recursive_retrieve (filename,
803                                      redirected_URL ? redirected_URL : *t);
804
805       if (opt.delete_after && file_exists_p(filename))
806         {
807           DEBUGP (("Removing file due to --delete-after in main():\n"));
808           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
809           if (unlink (filename))
810             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
811         }
812
813       FREE_MAYBE (redirected_URL);
814       FREE_MAYBE (filename);
815     }
816
817   /* And then from the input file, if any.  */
818   if (opt.input_filename)
819     {
820       int count;
821       status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
822       if (!count)
823         logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
824                    opt.input_filename);
825     }
826   /* Print the downloaded sum.  */
827   if (opt.recursive
828       || nurl > 1
829       || (opt.input_filename && opt.downloaded != 0))
830     {
831       logprintf (LOG_NOTQUIET,
832                  _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
833                  time_str (NULL),
834                  (opt.downloaded_overflow ?
835                   "<overflow>" : legible_very_long (opt.downloaded)),
836                  opt.numurls);
837       /* Print quota warning, if exceeded.  */
838       if (downloaded_exceeds_quota ())
839         logprintf (LOG_NOTQUIET,
840                    _("Download quota (%s bytes) EXCEEDED!\n"),
841                    legible (opt.quota));
842     }
843
844   if (opt.cookies_output)
845     save_cookies (opt.cookies_output);
846
847   if (opt.convert_links && !opt.delete_after)
848     {
849       convert_all_links ();
850     }
851   log_close ();
852   cleanup ();
853 #ifdef DEBUG_MALLOC
854   print_malloc_debug_stats ();
855 #endif
856   if (status == RETROK)
857     return 0;
858   else
859     return 1;
860 }
861 \f
862 /* Hangup signal handler.  When wget receives SIGHUP or SIGUSR1, it
863    will proceed operation as usual, trying to write into a log file.
864    If that is impossible, the output will be turned off.  */
865
866 #ifdef HAVE_SIGNAL
867 static RETSIGTYPE
868 redirect_output_signal (int sig)
869 {
870   char tmp[100];
871   signal (sig, redirect_output_signal);
872   /* Please note that the double `%' in `%%s' is intentional, because
873      redirect_output passes tmp through printf.  */
874   sprintf (tmp, _("%s received, redirecting output to `%%s'.\n"),
875            (sig == SIGHUP ? "SIGHUP" :
876             (sig == SIGUSR1 ? "SIGUSR1" :
877              "WTF?!")));
878   redirect_output (tmp);
879 }
880 #endif /* HAVE_SIGNAL */