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