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