1999-12-02 02:42:23 -05:00
|
|
|
|
/* Command line parsing.
|
2014-06-08 17:35:16 -04:00
|
|
|
|
Copyright (C) 1996-2014 Free Software Foundation, Inc.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
|
This file is part of GNU Wget.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-10 01:53:22 -04:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-12-02 02:42:23 -05:00
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-10 01:53:22 -04:00
|
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-17 22:16:36 -04:00
|
|
|
|
|
2007-11-28 03:05:33 -05:00
|
|
|
|
Additional permission under GNU GPL version 3 section 7
|
|
|
|
|
|
|
|
|
|
If you modify this program, or any covered work, by linking or
|
|
|
|
|
combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
|
modified version of that library), containing parts covered by the
|
|
|
|
|
terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
|
|
|
|
|
grants you additional permission to convey the resulting work.
|
|
|
|
|
Corresponding Source for a non-source form of such a combination
|
|
|
|
|
shall include the source code for the parts of OpenSSL used as well
|
|
|
|
|
as that of the covered work. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2007-10-18 23:50:40 -04:00
|
|
|
|
#include "wget.h"
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2010-12-01 07:15:13 -05:00
|
|
|
|
#include <unistd.h>
|
2005-06-19 18:34:58 -04:00
|
|
|
|
#include <string.h>
|
2005-06-19 19:03:27 -04:00
|
|
|
|
#include <signal.h>
|
2007-10-09 16:30:04 -04:00
|
|
|
|
#ifdef ENABLE_NLS
|
1999-12-02 02:42:23 -05:00
|
|
|
|
# include <locale.h>
|
2005-06-19 21:37:23 -04:00
|
|
|
|
#endif
|
2003-11-06 15:20:43 -05:00
|
|
|
|
#include <assert.h>
|
2000-12-17 13:12:02 -05:00
|
|
|
|
#include <errno.h>
|
2006-08-08 10:32:53 -04:00
|
|
|
|
#include <time.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2009-08-28 02:08:58 -04:00
|
|
|
|
#include "exits.h"
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#include "utils.h"
|
|
|
|
|
#include "init.h"
|
|
|
|
|
#include "retr.h"
|
|
|
|
|
#include "recur.h"
|
|
|
|
|
#include "host.h"
|
2001-11-18 20:14:14 -05:00
|
|
|
|
#include "url.h"
|
2006-07-14 09:25:50 -04:00
|
|
|
|
#include "progress.h" /* for progress_handle_sigwinch */
|
2003-09-21 19:32:42 -04:00
|
|
|
|
#include "convert.h"
|
2006-08-28 10:41:40 -04:00
|
|
|
|
#include "spider.h"
|
2006-07-14 09:25:50 -04:00
|
|
|
|
#include "http.h" /* for save_cookies */
|
2010-10-24 15:45:30 -04:00
|
|
|
|
#include "ptimer.h"
|
2011-11-04 17:25:00 -04:00
|
|
|
|
#include "warc.h"
|
2007-10-14 02:16:57 -04:00
|
|
|
|
#include <getopt.h>
|
2008-05-16 00:06:51 -04:00
|
|
|
|
#include <getpass.h>
|
|
|
|
|
#include <quote.h>
|
2001-11-17 23:52:18 -05:00
|
|
|
|
|
2011-05-23 15:56:44 -04:00
|
|
|
|
#ifdef WINDOWS
|
|
|
|
|
# include <io.h>
|
|
|
|
|
# include <fcntl.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#ifdef __VMS
|
2011-05-23 15:56:44 -04:00
|
|
|
|
# include "vms.h"
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#endif /* __VMS */
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#ifndef PATH_SEPARATOR
|
|
|
|
|
# define PATH_SEPARATOR '/'
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-03-21 08:14:20 -04:00
|
|
|
|
#ifndef ENABLE_IRI
|
|
|
|
|
struct iri dummy_iri;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
struct options opt;
|
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
/* defined in version.c */
|
2003-10-11 09:57:11 -04:00
|
|
|
|
extern char *version_string;
|
2008-05-06 02:14:25 -04:00
|
|
|
|
extern char *compilation_string;
|
|
|
|
|
extern char *system_getrc;
|
|
|
|
|
extern char *link_string;
|
|
|
|
|
/* defined in build_info.c */
|
2009-10-09 05:12:33 -04:00
|
|
|
|
extern const char *compiled_features[];
|
2008-05-06 02:14:25 -04:00
|
|
|
|
/* Used for --version output in print_version */
|
2009-07-04 14:47:08 -04:00
|
|
|
|
#define MAX_CHARS_PER_LINE 72
|
|
|
|
|
#define TABULATION 4
|
2003-10-11 09:57:11 -04:00
|
|
|
|
|
2005-06-30 08:15:08 -04:00
|
|
|
|
#if defined(SIGHUP) || defined(SIGUSR1)
|
2005-06-19 19:03:27 -04:00
|
|
|
|
static void redirect_output_signal (int);
|
2005-06-30 08:15:08 -04:00
|
|
|
|
#endif
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
const char *exec_name;
|
2008-11-16 14:53:58 -05:00
|
|
|
|
|
|
|
|
|
/* Number of successfully downloaded URLs */
|
|
|
|
|
int numurls = 0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2007-08-27 15:07:26 -04:00
|
|
|
|
#ifndef TESTING
|
2005-05-06 09:55:35 -04:00
|
|
|
|
/* Initialize I18N/L10N. That amounts to invoking setlocale, and
|
|
|
|
|
setting up gettext's message catalog using bindtextdomain and
|
|
|
|
|
textdomain. Does nothing if NLS is disabled or missing. */
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
static void
|
|
|
|
|
i18n_initialize (void)
|
|
|
|
|
{
|
2007-10-09 16:30:04 -04:00
|
|
|
|
/* ENABLE_NLS implies existence of functions invoked here. */
|
|
|
|
|
#ifdef ENABLE_NLS
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Set the current locale. */
|
2000-04-12 09:23:35 -04:00
|
|
|
|
setlocale (LC_ALL, "");
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Set the text message domain. */
|
|
|
|
|
bindtextdomain ("wget", LOCALEDIR);
|
|
|
|
|
textdomain ("wget");
|
2007-10-09 16:30:04 -04:00
|
|
|
|
#endif /* ENABLE_NLS */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
/* Definition of command-line options. */
|
|
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
|
static void print_help (void);
|
|
|
|
|
static void print_version (void);
|
2003-11-06 18:56:26 -05:00
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
#ifdef HAVE_SSL
|
|
|
|
|
# define IF_SSL(x) x
|
|
|
|
|
#else
|
|
|
|
|
# define IF_SSL(x) NULL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct cmdline_option {
|
|
|
|
|
const char *long_name;
|
|
|
|
|
char short_name;
|
|
|
|
|
enum {
|
|
|
|
|
OPT_VALUE,
|
|
|
|
|
OPT_BOOLEAN,
|
2003-11-06 18:56:26 -05:00
|
|
|
|
OPT_FUNCALL,
|
2003-11-06 15:20:43 -05:00
|
|
|
|
/* Non-standard options that have to be handled specially in
|
|
|
|
|
main(). */
|
|
|
|
|
OPT__APPEND_OUTPUT,
|
|
|
|
|
OPT__CLOBBER,
|
2003-11-08 15:13:24 -05:00
|
|
|
|
OPT__DONT_REMOVE_LISTING,
|
2003-11-06 15:20:43 -05:00
|
|
|
|
OPT__EXECUTE,
|
|
|
|
|
OPT__NO,
|
2005-06-15 16:08:48 -04:00
|
|
|
|
OPT__PARENT
|
2003-11-06 15:20:43 -05:00
|
|
|
|
} type;
|
2006-07-14 09:25:50 -04:00
|
|
|
|
const void *data; /* for standard options */
|
|
|
|
|
int argtype; /* for non-standard options */
|
2003-11-06 15:20:43 -05:00
|
|
|
|
};
|
|
|
|
|
|
2005-06-27 14:19:22 -04:00
|
|
|
|
static struct cmdline_option option_data[] =
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{
|
|
|
|
|
{ "accept", 'A', OPT_VALUE, "accept", -1 },
|
2012-05-09 15:18:23 -04:00
|
|
|
|
{ "accept-regex", 0, OPT_VALUE, "acceptregex", -1 },
|
2009-07-28 20:37:58 -04:00
|
|
|
|
{ "adjust-extension", 'E', OPT_BOOLEAN, "adjustextension", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "append-output", 'a', OPT__APPEND_OUTPUT, NULL, required_argument },
|
2008-04-30 18:28:23 -04:00
|
|
|
|
{ "ask-password", 0, OPT_BOOLEAN, "askpassword", -1 },
|
2008-02-10 20:31:27 -05:00
|
|
|
|
{ "auth-no-challenge", 0, OPT_BOOLEAN, "authnochallenge", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "background", 'b', OPT_BOOLEAN, "background", -1 },
|
|
|
|
|
{ "backup-converted", 'K', OPT_BOOLEAN, "backupconverted", -1 },
|
|
|
|
|
{ "backups", 0, OPT_BOOLEAN, "backups", -1 },
|
|
|
|
|
{ "base", 'B', OPT_VALUE, "base", -1 },
|
|
|
|
|
{ "bind-address", 0, OPT_VALUE, "bindaddress", -1 },
|
2013-04-12 14:14:32 -04:00
|
|
|
|
{ "body-data", 0, OPT_VALUE, "bodydata", -1 },
|
|
|
|
|
{ "body-file", 0, OPT_VALUE, "bodyfile", -1 },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{ IF_SSL ("ca-certificate"), 0, OPT_VALUE, "cacertificate", -1 },
|
|
|
|
|
{ IF_SSL ("ca-directory"), 0, OPT_VALUE, "cadirectory", -1 },
|
2003-11-08 15:22:21 -05:00
|
|
|
|
{ "cache", 0, OPT_BOOLEAN, "cache", -1 },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{ IF_SSL ("certificate"), 0, OPT_VALUE, "certificate", -1 },
|
|
|
|
|
{ IF_SSL ("certificate-type"), 0, OPT_VALUE, "certificatetype", -1 },
|
|
|
|
|
{ IF_SSL ("check-certificate"), 0, OPT_BOOLEAN, "checkcertificate", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "clobber", 0, OPT__CLOBBER, NULL, optional_argument },
|
2010-10-28 18:20:31 -04:00
|
|
|
|
{ "config", 0, OPT_VALUE, "chooseconfig", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "connect-timeout", 0, OPT_VALUE, "connecttimeout", -1 },
|
|
|
|
|
{ "continue", 'c', OPT_BOOLEAN, "continue", -1 },
|
|
|
|
|
{ "convert-links", 'k', OPT_BOOLEAN, "convertlinks", -1 },
|
2006-04-28 05:15:14 -04:00
|
|
|
|
{ "content-disposition", 0, OPT_BOOLEAN, "contentdisposition", -1 },
|
2011-10-06 07:25:17 -04:00
|
|
|
|
{ "content-on-error", 0, OPT_BOOLEAN, "contentonerror", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "cookies", 0, OPT_BOOLEAN, "cookies", -1 },
|
|
|
|
|
{ "cut-dirs", 0, OPT_VALUE, "cutdirs", -1 },
|
2014-02-01 04:46:30 -05:00
|
|
|
|
{ "debug", 'd', OPT_BOOLEAN, "debug", -1 },
|
2008-08-04 01:12:34 -04:00
|
|
|
|
{ "default-page", 0, OPT_VALUE, "defaultpage", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "delete-after", 0, OPT_BOOLEAN, "deleteafter", -1 },
|
|
|
|
|
{ "directories", 0, OPT_BOOLEAN, "dirstruct", -1 },
|
|
|
|
|
{ "directory-prefix", 'P', OPT_VALUE, "dirprefix", -1 },
|
|
|
|
|
{ "dns-cache", 0, OPT_BOOLEAN, "dnscache", -1 },
|
|
|
|
|
{ "dns-timeout", 0, OPT_VALUE, "dnstimeout", -1 },
|
|
|
|
|
{ "domains", 'D', OPT_VALUE, "domains", -1 },
|
2003-11-08 15:13:24 -05:00
|
|
|
|
{ "dont-remove-listing", 0, OPT__DONT_REMOVE_LISTING, NULL, no_argument },
|
2009-07-26 21:55:49 -04:00
|
|
|
|
{ "dot-style", 0, OPT_VALUE, "dotstyle", -1 }, /* deprecated */
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "egd-file", 0, OPT_VALUE, "egdfile", -1 },
|
|
|
|
|
{ "exclude-directories", 'X', OPT_VALUE, "excludedirectories", -1 },
|
|
|
|
|
{ "exclude-domains", 0, OPT_VALUE, "excludedomains", -1 },
|
|
|
|
|
{ "execute", 'e', OPT__EXECUTE, NULL, required_argument },
|
|
|
|
|
{ "follow-ftp", 0, OPT_BOOLEAN, "followftp", -1 },
|
|
|
|
|
{ "follow-tags", 0, OPT_VALUE, "followtags", -1 },
|
|
|
|
|
{ "force-directories", 'x', OPT_BOOLEAN, "dirstruct", -1 },
|
|
|
|
|
{ "force-html", 'F', OPT_BOOLEAN, "forcehtml", -1 },
|
2005-04-27 18:08:28 -04:00
|
|
|
|
{ "ftp-password", 0, OPT_VALUE, "ftppassword", -1 },
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#ifdef __VMS
|
|
|
|
|
{ "ftp-stmlf", 0, OPT_BOOLEAN, "ftpstmlf", -1 },
|
|
|
|
|
#endif /* def __VMS */
|
2005-04-27 17:30:22 -04:00
|
|
|
|
{ "ftp-user", 0, OPT_VALUE, "ftpuser", -1 },
|
2003-11-08 15:22:21 -05:00
|
|
|
|
{ "glob", 0, OPT_BOOLEAN, "glob", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "header", 0, OPT_VALUE, "header", -1 },
|
2003-11-06 18:56:26 -05:00
|
|
|
|
{ "help", 'h', OPT_FUNCALL, (void *)print_help, no_argument },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "host-directories", 0, OPT_BOOLEAN, "addhostdir", -1 },
|
2009-09-08 08:54:20 -04:00
|
|
|
|
{ "html-extension", 'E', OPT_BOOLEAN, "adjustextension", -1 }, /* deprecated */
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "htmlify", 0, OPT_BOOLEAN, "htmlify", -1 },
|
|
|
|
|
{ "http-keep-alive", 0, OPT_BOOLEAN, "httpkeepalive", -1 },
|
2005-04-27 18:08:28 -04:00
|
|
|
|
{ "http-passwd", 0, OPT_VALUE, "httppassword", -1 }, /* deprecated */
|
|
|
|
|
{ "http-password", 0, OPT_VALUE, "httppassword", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "http-user", 0, OPT_VALUE, "httpuser", -1 },
|
2013-08-22 06:28:11 -04:00
|
|
|
|
{ IF_SSL ("https-only"), 0, OPT_BOOLEAN, "httpsonly", -1 },
|
2005-07-06 15:44:00 -04:00
|
|
|
|
{ "ignore-case", 0, OPT_BOOLEAN, "ignorecase", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "ignore-length", 0, OPT_BOOLEAN, "ignorelength", -1 },
|
2003-11-08 15:22:21 -05:00
|
|
|
|
{ "ignore-tags", 0, OPT_VALUE, "ignoretags", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "include-directories", 'I', OPT_VALUE, "includedirectories", -1 },
|
2003-11-14 10:18:47 -05:00
|
|
|
|
#ifdef ENABLE_IPV6
|
2003-11-11 16:48:35 -05:00
|
|
|
|
{ "inet4-only", '4', OPT_BOOLEAN, "inet4only", -1 },
|
|
|
|
|
{ "inet6-only", '6', OPT_BOOLEAN, "inet6only", -1 },
|
2003-11-14 10:18:47 -05:00
|
|
|
|
#endif
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "input-file", 'i', OPT_VALUE, "input", -1 },
|
2008-05-24 21:34:28 -04:00
|
|
|
|
{ "iri", 0, OPT_BOOLEAN, "iri", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "keep-session-cookies", 0, OPT_BOOLEAN, "keepsessioncookies", -1 },
|
|
|
|
|
{ "level", 'l', OPT_VALUE, "reclevel", -1 },
|
|
|
|
|
{ "limit-rate", 0, OPT_VALUE, "limitrate", -1 },
|
|
|
|
|
{ "load-cookies", 0, OPT_VALUE, "loadcookies", -1 },
|
2009-07-27 00:50:19 -04:00
|
|
|
|
{ "local-encoding", 0, OPT_VALUE, "localencoding", -1 },
|
2007-07-28 22:37:14 -04:00
|
|
|
|
{ "max-redirect", 0, OPT_VALUE, "maxredirect", -1 },
|
2013-04-12 14:14:32 -04:00
|
|
|
|
{ "method", 0, OPT_VALUE, "method", -1 },
|
2003-11-08 20:07:53 -05:00
|
|
|
|
{ "mirror", 'm', OPT_BOOLEAN, "mirror", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "no", 'n', OPT__NO, NULL, required_argument },
|
|
|
|
|
{ "no-clobber", 0, OPT_BOOLEAN, "noclobber", -1 },
|
2014-01-17 04:46:38 -05:00
|
|
|
|
{ "no-config", 0, OPT_BOOLEAN, "noconfig", -1},
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "no-parent", 0, OPT_BOOLEAN, "noparent", -1 },
|
|
|
|
|
{ "output-document", 'O', OPT_VALUE, "outputdocument", -1 },
|
|
|
|
|
{ "output-file", 'o', OPT_VALUE, "logfile", -1 },
|
|
|
|
|
{ "page-requisites", 'p', OPT_BOOLEAN, "pagerequisites", -1 },
|
|
|
|
|
{ "parent", 0, OPT__PARENT, NULL, optional_argument },
|
|
|
|
|
{ "passive-ftp", 0, OPT_BOOLEAN, "passiveftp", -1 },
|
2005-04-27 17:30:22 -04:00
|
|
|
|
{ "password", 0, OPT_VALUE, "password", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "post-data", 0, OPT_VALUE, "postdata", -1 },
|
|
|
|
|
{ "post-file", 0, OPT_VALUE, "postfile", -1 },
|
2005-04-24 16:00:19 -04:00
|
|
|
|
{ "prefer-family", 0, OPT_VALUE, "preferfamily", -1 },
|
2011-10-23 07:11:22 -04:00
|
|
|
|
{ "preserve-permissions", 0, OPT_BOOLEAN, "preservepermissions", -1 },
|
2005-04-27 13:15:10 -04:00
|
|
|
|
{ IF_SSL ("private-key"), 0, OPT_VALUE, "privatekey", -1 },
|
|
|
|
|
{ IF_SSL ("private-key-type"), 0, OPT_VALUE, "privatekeytype", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "progress", 0, OPT_VALUE, "progress", -1 },
|
2014-04-30 19:04:11 -04:00
|
|
|
|
{ "show-progress", 0, OPT_BOOLEAN, "showprogress", -1 },
|
2003-12-05 22:01:31 -05:00
|
|
|
|
{ "protocol-directories", 0, OPT_BOOLEAN, "protocoldirectories", -1 },
|
2005-04-25 06:13:18 -04:00
|
|
|
|
{ "proxy", 0, OPT_BOOLEAN, "useproxy", -1 },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{ "proxy__compat", 'Y', OPT_VALUE, "useproxy", -1 }, /* back-compatible */
|
2005-04-27 18:08:28 -04:00
|
|
|
|
{ "proxy-passwd", 0, OPT_VALUE, "proxypassword", -1 }, /* deprecated */
|
|
|
|
|
{ "proxy-password", 0, OPT_VALUE, "proxypassword", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "proxy-user", 0, OPT_VALUE, "proxyuser", -1 },
|
|
|
|
|
{ "quiet", 'q', OPT_BOOLEAN, "quiet", -1 },
|
|
|
|
|
{ "quota", 'Q', OPT_VALUE, "quota", -1 },
|
2005-04-27 17:08:40 -04:00
|
|
|
|
{ "random-file", 0, OPT_VALUE, "randomfile", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "random-wait", 0, OPT_BOOLEAN, "randomwait", -1 },
|
|
|
|
|
{ "read-timeout", 0, OPT_VALUE, "readtimeout", -1 },
|
|
|
|
|
{ "recursive", 'r', OPT_BOOLEAN, "recursive", -1 },
|
|
|
|
|
{ "referer", 0, OPT_VALUE, "referer", -1 },
|
2012-05-09 15:18:23 -04:00
|
|
|
|
{ "regex-type", 0, OPT_VALUE, "regextype", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "reject", 'R', OPT_VALUE, "reject", -1 },
|
2012-05-09 15:18:23 -04:00
|
|
|
|
{ "reject-regex", 0, OPT_VALUE, "rejectregex", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "relative", 'L', OPT_BOOLEAN, "relativeonly", -1 },
|
2009-07-10 05:12:34 -04:00
|
|
|
|
{ "remote-encoding", 0, OPT_VALUE, "remoteencoding", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "remove-listing", 0, OPT_BOOLEAN, "removelisting", -1 },
|
2012-06-06 14:41:25 -04:00
|
|
|
|
{ "report-speed", 0, OPT_BOOLEAN, "reportspeed", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "restrict-file-names", 0, OPT_BOOLEAN, "restrictfilenames", -1 },
|
|
|
|
|
{ "retr-symlinks", 0, OPT_BOOLEAN, "retrsymlinks", -1 },
|
|
|
|
|
{ "retry-connrefused", 0, OPT_BOOLEAN, "retryconnrefused", -1 },
|
|
|
|
|
{ "save-cookies", 0, OPT_VALUE, "savecookies", -1 },
|
|
|
|
|
{ "save-headers", 0, OPT_BOOLEAN, "saveheaders", -1 },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{ IF_SSL ("secure-protocol"), 0, OPT_VALUE, "secureprotocol", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "server-response", 'S', OPT_BOOLEAN, "serverresponse", -1 },
|
|
|
|
|
{ "span-hosts", 'H', OPT_BOOLEAN, "spanhosts", -1 },
|
|
|
|
|
{ "spider", 0, OPT_BOOLEAN, "spider", -1 },
|
2014-03-19 11:42:04 -04:00
|
|
|
|
{ "start-pos", 0, OPT_VALUE, "startpos", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "strict-comments", 0, OPT_BOOLEAN, "strictcomments", -1 },
|
|
|
|
|
{ "timeout", 'T', OPT_VALUE, "timeout", -1 },
|
|
|
|
|
{ "timestamping", 'N', OPT_BOOLEAN, "timestamping", -1 },
|
|
|
|
|
{ "tries", 't', OPT_VALUE, "tries", -1 },
|
2010-09-29 07:34:09 -04:00
|
|
|
|
{ "unlink", 0, OPT_BOOLEAN, "unlink", -1 },
|
2010-07-28 15:22:22 -04:00
|
|
|
|
{ "trust-server-names", 0, OPT_BOOLEAN, "trustservernames", -1 },
|
2010-01-09 23:21:37 -05:00
|
|
|
|
{ "use-server-timestamps", 0, OPT_BOOLEAN, "useservertimestamps", -1 },
|
2005-04-27 17:30:22 -04:00
|
|
|
|
{ "user", 0, OPT_VALUE, "user", -1 },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "user-agent", 'U', OPT_VALUE, "useragent", -1 },
|
|
|
|
|
{ "verbose", 'v', OPT_BOOLEAN, "verbose", -1 },
|
|
|
|
|
{ "verbose", 0, OPT_BOOLEAN, "verbose", -1 },
|
2003-11-06 18:56:26 -05:00
|
|
|
|
{ "version", 'V', OPT_FUNCALL, (void *) print_version, no_argument },
|
2003-11-06 15:20:43 -05:00
|
|
|
|
{ "wait", 'w', OPT_VALUE, "wait", -1 },
|
|
|
|
|
{ "waitretry", 0, OPT_VALUE, "waitretry", -1 },
|
2011-11-04 17:25:00 -04:00
|
|
|
|
{ "warc-cdx", 0, OPT_BOOLEAN, "warccdx", -1 },
|
2012-01-11 09:27:06 -05:00
|
|
|
|
#ifdef HAVE_LIBZ
|
2011-11-04 17:25:00 -04:00
|
|
|
|
{ "warc-compression", 0, OPT_BOOLEAN, "warccompression", -1 },
|
2012-01-11 09:27:06 -05:00
|
|
|
|
#endif
|
2011-11-04 17:25:00 -04:00
|
|
|
|
{ "warc-dedup", 0, OPT_VALUE, "warccdxdedup", -1 },
|
|
|
|
|
{ "warc-digests", 0, OPT_BOOLEAN, "warcdigests", -1 },
|
|
|
|
|
{ "warc-file", 0, OPT_VALUE, "warcfile", -1 },
|
|
|
|
|
{ "warc-header", 0, OPT_VALUE, "warcheader", -1 },
|
|
|
|
|
{ "warc-keep-log", 0, OPT_BOOLEAN, "warckeeplog", -1 },
|
|
|
|
|
{ "warc-max-size", 0, OPT_VALUE, "warcmaxsize", -1 },
|
|
|
|
|
{ "warc-tempdir", 0, OPT_VALUE, "warctempdir", -1 },
|
2009-09-05 14:27:52 -04:00
|
|
|
|
#ifdef USE_WATT32
|
2007-09-28 17:47:46 -04:00
|
|
|
|
{ "wdebug", 0, OPT_BOOLEAN, "wdebug", -1 },
|
|
|
|
|
#endif
|
2003-11-06 15:20:43 -05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#undef IF_SSL
|
|
|
|
|
|
2003-11-06 18:56:26 -05:00
|
|
|
|
/* Return a string that contains S with "no-" prepended. The string
|
|
|
|
|
is NUL-terminated and allocated off static storage at Wget
|
|
|
|
|
startup. */
|
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
static char *
|
|
|
|
|
no_prefix (const char *s)
|
|
|
|
|
{
|
2014-04-30 19:04:11 -04:00
|
|
|
|
static char buffer[2048];
|
2003-11-06 15:20:43 -05:00
|
|
|
|
static char *p = buffer;
|
|
|
|
|
|
|
|
|
|
char *cp = p;
|
|
|
|
|
int size = 3 + strlen (s) + 1; /* "no-STRING\0" */
|
|
|
|
|
if (p + size >= buffer + sizeof (buffer))
|
|
|
|
|
abort ();
|
|
|
|
|
|
2003-11-06 18:56:26 -05:00
|
|
|
|
cp[0] = 'n', cp[1] = 'o', cp[2] = '-';
|
2003-11-06 15:20:43 -05:00
|
|
|
|
strcpy (cp + 3, s);
|
|
|
|
|
p += size;
|
|
|
|
|
return cp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The arguments that that main passes to getopt_long. */
|
|
|
|
|
static struct option long_options[2 * countof (option_data) + 1];
|
|
|
|
|
static char short_options[128];
|
|
|
|
|
|
|
|
|
|
/* Mapping between short option chars and option_data indices. */
|
|
|
|
|
static unsigned char optmap[96];
|
|
|
|
|
|
|
|
|
|
/* Marker for `--no-FOO' values in long_options. */
|
|
|
|
|
#define BOOLEAN_NEG_MARKER 1024
|
|
|
|
|
|
2003-11-06 18:56:26 -05:00
|
|
|
|
/* Initialize the long_options array used by getopt_long from the data
|
|
|
|
|
in option_data. */
|
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
static void
|
|
|
|
|
init_switches (void)
|
|
|
|
|
{
|
|
|
|
|
char *p = short_options;
|
2008-05-31 01:42:36 -04:00
|
|
|
|
size_t i, o = 0;
|
2003-11-06 15:20:43 -05:00
|
|
|
|
for (i = 0; i < countof (option_data); i++)
|
|
|
|
|
{
|
2014-05-11 17:20:49 -04:00
|
|
|
|
struct cmdline_option *cmdopt = &option_data[i];
|
2003-11-06 15:20:43 -05:00
|
|
|
|
struct option *longopt;
|
|
|
|
|
|
2014-05-11 17:20:49 -04:00
|
|
|
|
if (!cmdopt->long_name)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
/* The option is disabled. */
|
|
|
|
|
continue;
|
2003-11-06 15:20:43 -05:00
|
|
|
|
|
|
|
|
|
longopt = &long_options[o++];
|
2014-05-11 17:20:49 -04:00
|
|
|
|
longopt->name = cmdopt->long_name;
|
2003-11-06 15:20:43 -05:00
|
|
|
|
longopt->val = i;
|
2014-05-11 17:20:49 -04:00
|
|
|
|
if (cmdopt->short_name)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
2014-05-11 17:20:49 -04:00
|
|
|
|
*p++ = cmdopt->short_name;
|
|
|
|
|
optmap[cmdopt->short_name - 32] = longopt - long_options;
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
2014-05-11 17:20:49 -04:00
|
|
|
|
switch (cmdopt->type)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
|
|
|
|
case OPT_VALUE:
|
|
|
|
|
longopt->has_arg = required_argument;
|
2014-05-11 17:20:49 -04:00
|
|
|
|
if (cmdopt->short_name)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
*p++ = ':';
|
|
|
|
|
break;
|
|
|
|
|
case OPT_BOOLEAN:
|
|
|
|
|
/* Specify an optional argument for long options, so that
|
|
|
|
|
--option=off works the same as --no-option, for
|
|
|
|
|
compatibility with pre-1.10 Wget. However, don't specify
|
|
|
|
|
optional arguments short-option booleans because they
|
|
|
|
|
prevent combining of short options. */
|
|
|
|
|
longopt->has_arg = optional_argument;
|
|
|
|
|
/* For Boolean options, add the "--no-FOO" variant, which is
|
|
|
|
|
identical to "--foo", except it has opposite meaning and
|
|
|
|
|
it doesn't allow an argument. */
|
|
|
|
|
longopt = &long_options[o++];
|
2014-05-11 17:20:49 -04:00
|
|
|
|
longopt->name = no_prefix (cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
longopt->has_arg = no_argument;
|
|
|
|
|
/* Mask the value so we'll be able to recognize that we're
|
|
|
|
|
dealing with the false value. */
|
|
|
|
|
longopt->val = i | BOOLEAN_NEG_MARKER;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2014-05-11 17:20:49 -04:00
|
|
|
|
assert (cmdopt->argtype != -1);
|
|
|
|
|
longopt->has_arg = cmdopt->argtype;
|
|
|
|
|
if (cmdopt->short_name)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
|
|
|
|
if (longopt->has_arg == required_argument)
|
|
|
|
|
*p++ = ':';
|
|
|
|
|
/* Don't handle optional_argument */
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-11-06 15:20:43 -05:00
|
|
|
|
}
|
2003-11-06 17:48:17 -05:00
|
|
|
|
/* Terminate short_options. */
|
2003-11-06 15:20:43 -05:00
|
|
|
|
*p = '\0';
|
2003-11-06 17:48:17 -05:00
|
|
|
|
/* No need for xzero(long_options[o]) because its storage is static
|
|
|
|
|
and it will be zeroed by default. */
|
|
|
|
|
assert (o <= countof (long_options));
|
2003-11-06 15:20:43 -05:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Print the usage message. */
|
2011-08-27 05:19:24 -04:00
|
|
|
|
static int
|
2010-05-31 03:45:03 -04:00
|
|
|
|
print_usage (int error)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2011-08-27 05:19:24 -04:00
|
|
|
|
return fprintf (error ? stderr : stdout,
|
|
|
|
|
_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print the help message, describing all the available options. If
|
|
|
|
|
you add an option, be sure to update this list. */
|
2014-06-16 08:55:44 -04:00
|
|
|
|
static void _Noreturn
|
1999-12-02 02:42:23 -05:00
|
|
|
|
print_help (void)
|
|
|
|
|
{
|
2003-11-06 18:56:26 -05:00
|
|
|
|
/* We split the help text this way to ease translation of individual
|
|
|
|
|
entries. */
|
|
|
|
|
static const char *help[] = {
|
|
|
|
|
"\n",
|
|
|
|
|
N_("\
|
|
|
|
|
Mandatory arguments to long options are mandatory for short options too.\n\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
Startup:\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-V, --version display the version of Wget and exit.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-h, --help print this help.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-b, --background go to background after startup.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-e, --execute=COMMAND execute a `.wgetrc'-style command.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
|
|
|
|
N_("\
|
|
|
|
|
Logging and input file:\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-o, --output-file=FILE log messages to FILE.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-a, --append-output=FILE append messages to FILE.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
#ifdef ENABLE_DEBUG
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-d, --debug print lots of debugging information.\n"),
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#endif
|
2009-09-05 14:27:52 -04:00
|
|
|
|
#ifdef USE_WATT32
|
2007-09-28 17:47:46 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--wdebug print Watt-32 debug output.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
#endif
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-q, --quiet quiet (no output).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-v, --verbose be verbose (this is the default).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-nv, --no-verbose turn off verboseness, without being quiet.\n"),
|
2012-06-09 07:13:28 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--report-speed=TYPE Output bandwidth as TYPE. TYPE can be bits.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-i, --input-file=FILE download URLs found in local or external FILE.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-F, --force-html treat input file as HTML.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-B, --base=URL resolves HTML input-file links (-i -F)\n\
|
|
|
|
|
relative to URL.\n"),
|
2010-10-28 18:20:31 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--config=FILE Specify config file to use.\n"),
|
2014-01-17 04:46:38 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-config Do not read any config file.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
|
|
|
|
N_("\
|
|
|
|
|
Download:\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-t, --tries=NUMBER set number of retries to NUMBER (0 unlimits).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--retry-connrefused retry even if connection is refused.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-O, --output-document=FILE write documents to FILE.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-nc, --no-clobber skip downloads that would download to\n\
|
|
|
|
|
existing files (overwriting them).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-c, --continue resume getting a partially-downloaded file.\n"),
|
2014-03-19 11:42:04 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--start-pos=OFFSET start downloading from zero-based position OFFSET.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--progress=TYPE select progress gauge type.\n"),
|
2014-04-30 19:04:11 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--show-progress display the progress bar in any verbosity mode.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-N, --timestamping don't re-retrieve files unless newer than\n\
|
|
|
|
|
local.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-use-server-timestamps don't set the local file's timestamp by\n\
|
|
|
|
|
the one on the server.\n"),
|
2010-01-09 23:21:37 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-S, --server-response print server response.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--spider don't download anything.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-T, --timeout=SECONDS set all timeout values to SECONDS.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--dns-timeout=SECS set the DNS lookup timeout to SECS.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--connect-timeout=SECS set the connect timeout to SECS.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--read-timeout=SECS set the read timeout to SECS.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-w, --wait=SECONDS wait SECONDS between retrievals.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--waitretry=SECONDS wait 1..SECONDS between retries of a retrieval.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--random-wait wait from 0.5*WAIT...1.5*WAIT secs between retrievals.\n"),
|
2003-11-16 18:42:38 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-proxy explicitly turn off proxy.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-Q, --quota=NUMBER set retrieval quota to NUMBER.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--bind-address=ADDRESS bind to ADDRESS (hostname or IP) on local host.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--limit-rate=RATE limit download rate to RATE.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-dns-cache disable caching DNS lookups.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--restrict-file-names=OS restrict chars in file names to ones OS allows.\n"),
|
2005-07-06 15:44:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ignore-case ignore case when matching files/directories.\n"),
|
2003-11-14 10:18:47 -05:00
|
|
|
|
#ifdef ENABLE_IPV6
|
2003-11-11 16:48:35 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-4, --inet4-only connect only to IPv4 addresses.\n"),
|
2003-11-11 16:48:35 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-6, --inet6-only connect only to IPv6 addresses.\n"),
|
2005-04-24 16:00:19 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--prefer-family=FAMILY connect first to addresses of specified family,\n\
|
|
|
|
|
one of IPv6, IPv4, or none.\n"),
|
2003-11-14 10:18:47 -05:00
|
|
|
|
#endif
|
2005-04-27 18:08:28 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--user=USER set both ftp and http user to USER.\n"),
|
2005-04-27 18:08:28 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--password=PASS set both ftp and http password to PASS.\n"),
|
2008-04-30 18:28:23 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ask-password prompt for passwords.\n"),
|
2009-07-27 00:50:19 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-iri turn off IRI support.\n"),
|
2009-07-27 00:50:19 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--local-encoding=ENC use ENC as the local encoding for IRIs.\n"),
|
2009-07-27 00:50:19 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--remote-encoding=ENC use ENC as the default remote encoding.\n"),
|
2010-09-29 07:34:09 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--unlink remove file before clobber.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
|
|
|
|
N_("\
|
|
|
|
|
Directories:\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-nd, --no-directories don't create directories.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-x, --force-directories force creation of directories.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-nH, --no-host-directories don't create host directories.\n"),
|
2003-12-05 22:01:31 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--protocol-directories use protocol name in directories.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-P, --directory-prefix=PREFIX save files to PREFIX/...\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--cut-dirs=NUMBER ignore NUMBER remote directory components.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
|
|
|
|
N_("\
|
|
|
|
|
HTTP options:\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--http-user=USER set http user to USER.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--http-password=PASS set http password to PASS.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-cache disallow server-cached data.\n"),
|
2008-08-04 01:36:38 -04:00
|
|
|
|
N_ ("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--default-page=NAME Change the default page name (normally\n\
|
|
|
|
|
this is `index.html'.).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-E, --adjust-extension save HTML/CSS documents with proper extensions.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ignore-length ignore `Content-Length' header field.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--header=STRING insert STRING among the headers.\n"),
|
2007-07-28 22:37:14 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--max-redirect maximum redirections allowed per page.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--proxy-user=USER set USER as proxy username.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--proxy-password=PASS set PASS as proxy password.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--referer=URL include `Referer: URL' header in HTTP request.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--save-headers save the HTTP headers to file.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-U, --user-agent=AGENT identify as AGENT instead of Wget/VERSION.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-http-keep-alive disable HTTP keep-alive (persistent connections).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-cookies don't use cookies.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--load-cookies=FILE load cookies from FILE before session.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--save-cookies=FILE save cookies to FILE after session.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--keep-session-cookies load and save session (non-permanent) cookies.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--post-data=STRING use the POST method; send STRING as the data.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--post-file=FILE use the POST method; send contents of FILE.\n"),
|
2013-04-12 14:14:32 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--method=HTTPMethod use method \"HTTPMethod\" in the header.\n"),
|
2013-04-12 14:14:32 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--body-data=STRING Send STRING as data. --method MUST be set.\n"),
|
2013-04-12 14:14:32 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--body-file=FILE Send contents of FILE. --method MUST be set.\n"),
|
2006-04-28 05:15:14 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--content-disposition honor the Content-Disposition header when\n\
|
|
|
|
|
choosing local file names (EXPERIMENTAL).\n"),
|
2011-10-06 07:25:17 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--content-on-error output the received content on server errors.\n"),
|
2008-02-10 20:31:27 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--auth-no-challenge send Basic HTTP authentication information\n\
|
|
|
|
|
without first waiting for the server's\n\
|
|
|
|
|
challenge.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SSL
|
|
|
|
|
N_("\
|
2005-04-26 13:22:56 -04:00
|
|
|
|
HTTPS (SSL/TLS) options:\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--secure-protocol=PR choose secure protocol, one of auto, SSLv2,\n\
|
|
|
|
|
SSLv3, TLSv1 and PFS.\n"),
|
2013-08-22 06:28:11 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--https-only only follow secure HTTPS links\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-check-certificate don't validate the server's certificate.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--certificate=FILE client certificate file.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--certificate-type=TYPE client certificate type, PEM or DER.\n"),
|
2005-04-27 13:15:10 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--private-key=FILE private key file.\n"),
|
2005-04-27 13:15:10 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--private-key-type=TYPE private key type, PEM or DER.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ca-certificate=FILE file with the bundle of CA's.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ca-directory=DIR directory where hash list of CA's is stored.\n"),
|
2005-04-21 10:50:45 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--random-file=FILE file with random data for seeding the SSL PRNG.\n"),
|
2005-04-27 17:08:40 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--egd-file=FILE file naming the EGD socket with random data.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
#endif /* HAVE_SSL */
|
|
|
|
|
|
|
|
|
|
N_("\
|
|
|
|
|
FTP options:\n"),
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#ifdef __VMS
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ftp-stmlf Use Stream_LF format for all binary FTP files.\n"),
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#endif /* def __VMS */
|
2005-04-27 17:30:22 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ftp-user=USER set ftp user to USER.\n"),
|
2005-04-27 17:30:22 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--ftp-password=PASS set ftp password to PASS.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-remove-listing don't remove `.listing' files.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-glob turn off FTP file name globbing.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-passive-ftp disable the \"passive\" transfer mode.\n"),
|
2011-10-23 07:11:22 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--preserve-permissions preserve remote file permissions.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--retr-symlinks when recursing, get linked-to files (not dir).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
|
|
|
|
WARC options:\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--warc-file=FILENAME save request/response data to a .warc.gz file.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--warc-header=STRING insert STRING into the warcinfo record.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--warc-max-size=NUMBER set maximum size of WARC files to NUMBER.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--warc-cdx write CDX index files.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--warc-dedup=FILENAME do not store records listed in this CDX file.\n"),
|
2012-01-11 09:27:06 -05:00
|
|
|
|
#ifdef HAVE_LIBZ
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-warc-compression do not compress WARC files with GZIP.\n"),
|
2012-01-11 09:27:06 -05:00
|
|
|
|
#endif
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-warc-digests do not calculate SHA1 digests.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--no-warc-keep-log do not store the log file in a WARC record.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--warc-tempdir=DIRECTORY location for temporary files created by the\n\
|
|
|
|
|
WARC writer.\n"),
|
2011-11-04 17:25:00 -04:00
|
|
|
|
"\n",
|
|
|
|
|
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2003-11-14 21:05:21 -05:00
|
|
|
|
Recursive download:\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-r, --recursive specify recursive download.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-l, --level=NUMBER maximum recursion depth (inf or 0 for infinite).\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--delete-after delete files locally after downloading them.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-k, --convert-links make links in downloaded HTML or CSS point to\n\
|
|
|
|
|
local files.\n"),
|
2013-07-08 18:50:30 -04:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--backups=N before writing file X, rotate up to N backup files.\n"),
|
2013-07-08 18:50:30 -04:00
|
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#ifdef __VMS
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-K, --backup-converted before converting file X, back up as X_orig.\n"),
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#else /* def __VMS */
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-K, --backup-converted before converting file X, back up as X.orig.\n"),
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#endif /* def __VMS [else] */
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-m, --mirror shortcut for -N -r -l inf --no-remove-listing.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
-p, --page-requisites get all images, etc. needed to display HTML page.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--strict-comments turn on strict (SGML) handling of HTML comments.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
"\n",
|
|
|
|
|
|
|
|
|
|
N_("\
|
|
|
|
|
Recursive accept/reject:\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-A, --accept=LIST comma-separated list of accepted extensions.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-R, --reject=LIST comma-separated list of rejected extensions.\n"),
|
2012-05-09 15:18:23 -04:00
|
|
|
|
N_("\
|
|
|
|
|
--accept-regex=REGEX regex matching accepted URLs.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--reject-regex=REGEX regex matching rejected URLs.\n"),
|
|
|
|
|
#ifdef HAVE_LIBPCRE
|
|
|
|
|
N_("\
|
|
|
|
|
--regex-type=TYPE regex type (posix|pcre).\n"),
|
|
|
|
|
#else
|
|
|
|
|
N_("\
|
|
|
|
|
--regex-type=TYPE regex type (posix).\n"),
|
|
|
|
|
#endif
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
|
|
|
|
-D, --domains=LIST comma-separated list of accepted domains.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--exclude-domains=LIST comma-separated list of rejected domains.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--follow-ftp follow FTP links from HTML documents.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
--follow-tags=LIST comma-separated list of followed HTML tags.\n"),
|
|
|
|
|
N_("\
|
2003-11-08 15:22:21 -05:00
|
|
|
|
--ignore-tags=LIST comma-separated list of ignored HTML tags.\n"),
|
2003-11-06 18:56:26 -05:00
|
|
|
|
N_("\
|
|
|
|
|
-H, --span-hosts go to foreign hosts when recursive.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-L, --relative follow relative links only.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-I, --include-directories=LIST list of allowed directories.\n"),
|
|
|
|
|
N_("\
|
2014-05-26 05:51:58 -04:00
|
|
|
|
--trust-server-names use the name specified by the redirection\n\
|
2010-09-12 08:21:03 -04:00
|
|
|
|
url last component.\n"),
|
2010-07-28 15:22:22 -04:00
|
|
|
|
N_("\
|
2003-11-06 18:56:26 -05:00
|
|
|
|
-X, --exclude-directories=LIST list of excluded directories.\n"),
|
|
|
|
|
N_("\
|
|
|
|
|
-np, --no-parent don't ascend to the parent directory.\n"),
|
|
|
|
|
"\n",
|
|
|
|
|
N_("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n")
|
|
|
|
|
};
|
|
|
|
|
|
2008-05-31 01:42:36 -04:00
|
|
|
|
size_t i;
|
2003-11-06 18:56:26 -05:00
|
|
|
|
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
|
2011-09-06 09:53:39 -04:00
|
|
|
|
version_string) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (print_usage (0) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2003-11-06 18:56:26 -05:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < countof (help); i++)
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (fputs (_(help[i]), stdout) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2003-11-06 18:56:26 -05:00
|
|
|
|
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_SUCCESS);
|
2003-11-06 18:56:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-26 08:04:01 -04:00
|
|
|
|
/* Return a human-readable printed representation of INTERVAL,
|
|
|
|
|
measured in seconds. */
|
|
|
|
|
|
2005-06-25 20:41:09 -04:00
|
|
|
|
static char *
|
2005-06-26 08:04:01 -04:00
|
|
|
|
secs_to_human_time (double interval)
|
2005-06-25 20:41:09 -04:00
|
|
|
|
{
|
|
|
|
|
static char buf[32];
|
2005-06-26 08:04:01 -04:00
|
|
|
|
int secs = (int) (interval + 0.5);
|
2005-06-25 20:41:09 -04:00
|
|
|
|
int hours, mins, days;
|
|
|
|
|
|
|
|
|
|
days = secs / 86400, secs %= 86400;
|
|
|
|
|
hours = secs / 3600, secs %= 3600;
|
|
|
|
|
mins = secs / 60, secs %= 60;
|
|
|
|
|
|
|
|
|
|
if (days)
|
2005-06-26 08:04:01 -04:00
|
|
|
|
sprintf (buf, "%dd %dh %dm %ds", days, hours, mins, secs);
|
2005-06-25 20:41:09 -04:00
|
|
|
|
else if (hours)
|
2005-06-26 08:04:01 -04:00
|
|
|
|
sprintf (buf, "%dh %dm %ds", hours, mins, secs);
|
2005-06-25 20:41:09 -04:00
|
|
|
|
else if (mins)
|
2005-06-26 08:04:01 -04:00
|
|
|
|
sprintf (buf, "%dm %ds", mins, secs);
|
2005-06-25 20:41:09 -04:00
|
|
|
|
else
|
2005-06-28 18:03:12 -04:00
|
|
|
|
sprintf (buf, "%ss", print_decimal (interval));
|
2005-06-25 20:41:09 -04:00
|
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-30 18:28:23 -04:00
|
|
|
|
static char *
|
|
|
|
|
prompt_for_password (void)
|
|
|
|
|
{
|
|
|
|
|
if (opt.user)
|
2011-02-24 03:40:31 -05:00
|
|
|
|
fprintf (stderr, _("Password for user %s: "), quote (opt.user));
|
2008-04-30 18:28:23 -04:00
|
|
|
|
else
|
2011-02-24 03:40:31 -05:00
|
|
|
|
fprintf (stderr, _("Password: "));
|
2008-04-30 18:28:23 -04:00
|
|
|
|
return getpass("");
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
/* Function that prints the line argument while limiting it
|
|
|
|
|
to at most line_length. prefix is printed on the first line
|
|
|
|
|
and an appropriate number of spaces are added on subsequent
|
|
|
|
|
lines.*/
|
2011-08-27 05:19:24 -04:00
|
|
|
|
static int
|
2008-11-12 06:02:37 -05:00
|
|
|
|
format_and_print_line (const char *prefix, const char *line,
|
2009-09-21 23:39:44 -04:00
|
|
|
|
int line_length)
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2008-10-26 16:18:36 -04:00
|
|
|
|
int remaining_chars;
|
2008-11-12 06:02:37 -05:00
|
|
|
|
char *line_dup, *token;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
assert (prefix != NULL);
|
|
|
|
|
assert (line != NULL);
|
2013-08-08 12:16:10 -04:00
|
|
|
|
assert (line_length > TABULATION);
|
2008-05-06 02:14:25 -04:00
|
|
|
|
|
2008-11-12 06:02:37 -05:00
|
|
|
|
line_dup = xstrdup (line);
|
|
|
|
|
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("%s", prefix) < 0)
|
|
|
|
|
return -1;
|
2013-08-08 12:16:10 -04:00
|
|
|
|
|
|
|
|
|
/* Wrap to new line after prefix. */
|
|
|
|
|
remaining_chars = 0;
|
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
/* We break on spaces. */
|
2008-11-12 06:02:37 -05:00
|
|
|
|
token = strtok (line_dup, " ");
|
2009-09-21 23:39:44 -04:00
|
|
|
|
while (token != NULL)
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
|
|
|
|
/* If however a token is much larger than the maximum
|
|
|
|
|
line length, all bets are off and we simply print the
|
|
|
|
|
token on the next line. */
|
2013-08-08 12:16:10 -04:00
|
|
|
|
if (remaining_chars <= (int) strlen (token))
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("\n%*c", TABULATION, ' ') < 0)
|
|
|
|
|
return -1;
|
2009-07-04 14:47:08 -04:00
|
|
|
|
remaining_chars = line_length - TABULATION;
|
2008-05-06 02:14:25 -04:00
|
|
|
|
}
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("%s ", token) < 0)
|
|
|
|
|
return -1;
|
2009-07-04 14:47:08 -04:00
|
|
|
|
remaining_chars -= strlen (token) + 1; /* account for " " */
|
2008-05-06 02:14:25 -04:00
|
|
|
|
token = strtok (NULL, " ");
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("\n") < 0)
|
|
|
|
|
return -1;
|
2008-11-12 06:02:37 -05:00
|
|
|
|
|
|
|
|
|
xfree (line_dup);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
return 0;
|
2008-05-06 02:14:25 -04:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-16 08:55:44 -04:00
|
|
|
|
static void _Noreturn
|
2003-11-06 18:56:26 -05:00
|
|
|
|
print_version (void)
|
|
|
|
|
{
|
2009-07-04 14:47:08 -04:00
|
|
|
|
const char *wgetrc_title = _("Wgetrc: ");
|
|
|
|
|
const char *locale_title = _("Locale: ");
|
|
|
|
|
const char *compile_title = _("Compile: ");
|
|
|
|
|
const char *link_title = _("Link: ");
|
2008-10-26 16:18:36 -04:00
|
|
|
|
char *env_wgetrc, *user_wgetrc;
|
|
|
|
|
int i;
|
2008-05-06 02:14:25 -04:00
|
|
|
|
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf (_("GNU Wget %s built on %s.\n\n"), version_string, OS_TYPE) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2009-10-09 05:23:26 -04:00
|
|
|
|
|
2009-09-21 23:39:44 -04:00
|
|
|
|
for (i = 0; compiled_features[i] != NULL; )
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2009-07-04 14:47:08 -04:00
|
|
|
|
int line_length = MAX_CHARS_PER_LINE;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
while ((line_length > 0) && (compiled_features[i] != NULL))
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2011-09-02 07:37:10 -04:00
|
|
|
|
if (printf ("%s ", compiled_features[i]) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-05-06 02:14:25 -04:00
|
|
|
|
line_length -= strlen (compiled_features[i]) + 2;
|
|
|
|
|
i++;
|
|
|
|
|
}
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("\n") < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-05-06 02:14:25 -04:00
|
|
|
|
}
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("\n") < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2009-10-09 05:23:26 -04:00
|
|
|
|
|
2009-09-21 23:39:44 -04:00
|
|
|
|
/* Handle the case when $WGETRC is unset and $HOME/.wgetrc is
|
2008-05-06 02:14:25 -04:00
|
|
|
|
absent. */
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf ("%s\n", wgetrc_title) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
|
2008-10-26 16:18:36 -04:00
|
|
|
|
env_wgetrc = wgetrc_env_file_name ();
|
2009-09-21 23:39:44 -04:00
|
|
|
|
if (env_wgetrc && *env_wgetrc)
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf (_(" %s (env)\n"), env_wgetrc) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-05-06 02:14:25 -04:00
|
|
|
|
xfree (env_wgetrc);
|
|
|
|
|
}
|
2008-10-26 16:18:36 -04:00
|
|
|
|
user_wgetrc = wgetrc_user_file_name ();
|
2009-09-21 23:39:44 -04:00
|
|
|
|
if (user_wgetrc)
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf (_(" %s (user)\n"), user_wgetrc) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-05-06 02:14:25 -04:00
|
|
|
|
xfree (user_wgetrc);
|
|
|
|
|
}
|
2008-09-09 13:20:21 -04:00
|
|
|
|
#ifdef SYSTEM_WGETRC
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (printf (_(" %s (system)\n"), SYSTEM_WGETRC) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-09-09 13:20:21 -04:00
|
|
|
|
#endif
|
2008-05-06 02:14:25 -04:00
|
|
|
|
|
2009-09-11 22:41:57 -04:00
|
|
|
|
#ifdef ENABLE_NLS
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (format_and_print_line (locale_title,
|
2013-08-08 12:16:10 -04:00
|
|
|
|
LOCALEDIR,
|
2011-08-27 05:19:24 -04:00
|
|
|
|
MAX_CHARS_PER_LINE) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2009-09-11 22:41:57 -04:00
|
|
|
|
#endif /* def ENABLE_NLS */
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2010-01-09 18:24:02 -05:00
|
|
|
|
if (compilation_string != NULL)
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (format_and_print_line (compile_title,
|
|
|
|
|
compilation_string,
|
|
|
|
|
MAX_CHARS_PER_LINE) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-05-06 02:14:25 -04:00
|
|
|
|
|
2010-01-09 18:24:02 -05:00
|
|
|
|
if (link_string != NULL)
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (format_and_print_line (link_title,
|
|
|
|
|
link_string,
|
|
|
|
|
MAX_CHARS_PER_LINE) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
|
|
|
|
|
if (printf ("\n") < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-11-11 17:00:05 -05:00
|
|
|
|
|
2008-01-25 07:38:56 -05:00
|
|
|
|
/* TRANSLATORS: When available, an actual copyright character
|
2011-09-19 11:29:48 -04:00
|
|
|
|
(circle-c) should be used in preference to "(C)". */
|
2014-02-06 12:35:05 -05:00
|
|
|
|
if (printf (_("\
|
|
|
|
|
Copyright (C) %s Free Software Foundation, Inc.\n"), "2014") < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (fputs (_("\
|
2007-07-10 15:30:47 -04:00
|
|
|
|
License GPLv3+: GNU GPL version 3 or later\n\
|
|
|
|
|
<http://www.gnu.org/licenses/gpl.html>.\n\
|
2007-07-10 01:53:22 -04:00
|
|
|
|
This is free software: you are free to change and redistribute it.\n\
|
2011-08-27 05:19:24 -04:00
|
|
|
|
There is NO WARRANTY, to the extent permitted by law.\n"), stdout) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2008-01-25 07:38:56 -05:00
|
|
|
|
/* TRANSLATORS: When available, please use the proper diacritics for
|
|
|
|
|
names such as this one. See en_US.po for reference. */
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (fputs (_("\nOriginally written by Hrvoje Niksic <hniksic@xemacs.org>.\n"),
|
|
|
|
|
stdout) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
if (fputs (_("Please send bug reports and questions to <bug-wget@gnu.org>.\n"),
|
|
|
|
|
stdout) < 0)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_IO_FAIL);
|
2011-08-27 05:19:24 -04:00
|
|
|
|
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_SUCCESS);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2007-09-28 17:47:46 -04:00
|
|
|
|
|
2014-06-08 17:35:16 -04:00
|
|
|
|
char *program_name; /* Needed by lib/error.c. */
|
2011-11-04 17:25:00 -04:00
|
|
|
|
char *program_argstring; /* Needed by wget_warc.c. */
|
2008-09-09 12:40:13 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
int
|
2007-10-30 19:50:17 -04:00
|
|
|
|
main (int argc, char **argv)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
char **url, **t;
|
2003-11-06 15:20:43 -05:00
|
|
|
|
int i, ret, longindex;
|
2010-10-06 06:24:38 -04:00
|
|
|
|
int nurl;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
bool append_to_log = false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2010-12-10 17:55:54 -05:00
|
|
|
|
total_downloaded_bytes = 0;
|
|
|
|
|
|
2008-09-09 12:40:13 -04:00
|
|
|
|
program_name = argv[0];
|
|
|
|
|
|
2010-10-24 15:45:30 -04:00
|
|
|
|
struct ptimer *timer = ptimer_new ();
|
|
|
|
|
double start_time = ptimer_measure (timer);
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
i18n_initialize ();
|
|
|
|
|
|
|
|
|
|
/* Construct the name of the executable, without the directory part. */
|
2010-01-09 18:24:02 -05:00
|
|
|
|
#ifdef __VMS
|
|
|
|
|
/* On VMS, lose the "dev:[dir]" prefix and the ".EXE;nnn" suffix. */
|
|
|
|
|
exec_name = vms_basename (argv[0]);
|
|
|
|
|
#else /* def __VMS */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
exec_name = strrchr (argv[0], PATH_SEPARATOR);
|
|
|
|
|
if (!exec_name)
|
|
|
|
|
exec_name = argv[0];
|
|
|
|
|
else
|
|
|
|
|
++exec_name;
|
2010-01-09 18:24:02 -05:00
|
|
|
|
#endif /* def __VMS [else] */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
#ifdef WINDOWS
|
2005-01-01 16:29:11 -05:00
|
|
|
|
/* Drop extension (typically .EXE) from executable filename. */
|
2007-10-10 23:57:42 -04:00
|
|
|
|
windows_main ((char **) &exec_name);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#endif
|
|
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
|
/* Construct the arguments string. */
|
|
|
|
|
int argstring_length = 1;
|
|
|
|
|
for (i = 1; i < argc; i++)
|
|
|
|
|
argstring_length += strlen (argv[i]) + 2 + 1;
|
|
|
|
|
char *p = program_argstring = malloc (argstring_length * sizeof (char));
|
2012-02-23 05:45:05 -05:00
|
|
|
|
if (p == NULL)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("Memory allocation problem\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_PARSE_ERROR);
|
2012-02-23 05:45:05 -05:00
|
|
|
|
}
|
2011-11-04 17:25:00 -04:00
|
|
|
|
for (i = 1; i < argc; i++)
|
2012-02-23 05:45:05 -05:00
|
|
|
|
{
|
|
|
|
|
*p++ = '"';
|
|
|
|
|
int arglen = strlen (argv[i]);
|
|
|
|
|
memcpy (p, argv[i], arglen);
|
|
|
|
|
p += arglen;
|
|
|
|
|
*p++ = '"';
|
|
|
|
|
*p++ = ' ';
|
|
|
|
|
}
|
2011-11-04 17:25:00 -04:00
|
|
|
|
*p = '\0';
|
|
|
|
|
|
2010-10-28 18:20:31 -04:00
|
|
|
|
/* Load the hard-coded defaults. */
|
|
|
|
|
defaults ();
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
init_switches ();
|
2010-10-28 18:20:31 -04:00
|
|
|
|
|
2011-10-23 07:11:22 -04:00
|
|
|
|
/* This separate getopt_long is needed to find the user config file
|
|
|
|
|
option ("--config") and parse it before the other user options. */
|
2010-10-28 18:20:31 -04:00
|
|
|
|
longindex = -1;
|
|
|
|
|
int retconf;
|
|
|
|
|
bool use_userconfig = false;
|
2014-01-17 04:46:38 -05:00
|
|
|
|
bool noconfig = false;
|
2010-10-28 18:20:31 -04:00
|
|
|
|
|
|
|
|
|
while ((retconf = getopt_long (argc, argv,
|
|
|
|
|
short_options, long_options, &longindex)) != -1)
|
|
|
|
|
{
|
|
|
|
|
int confval;
|
|
|
|
|
struct cmdline_option *config_opt;
|
2011-10-23 07:11:22 -04:00
|
|
|
|
|
|
|
|
|
/* There is no short option for "--config". */
|
|
|
|
|
if (longindex >= 0)
|
2010-10-28 18:20:31 -04:00
|
|
|
|
{
|
2011-10-23 07:11:22 -04:00
|
|
|
|
confval = long_options[longindex].val;
|
|
|
|
|
config_opt = &option_data[confval & ~BOOLEAN_NEG_MARKER];
|
2014-01-17 04:46:38 -05:00
|
|
|
|
if (strcmp (config_opt->long_name, "no-config") == 0)
|
|
|
|
|
{
|
|
|
|
|
noconfig = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (config_opt->long_name, "config") == 0)
|
2011-10-23 07:11:22 -04:00
|
|
|
|
{
|
2012-12-09 11:04:39 -05:00
|
|
|
|
bool userrc_ret = true;
|
2011-10-23 07:11:22 -04:00
|
|
|
|
userrc_ret &= run_wgetrc (optarg);
|
|
|
|
|
use_userconfig = true;
|
2012-12-09 11:04:39 -05:00
|
|
|
|
if (userrc_ret)
|
|
|
|
|
break;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("Exiting due to error in %s\n"), optarg);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_PARSE_ERROR);
|
2012-12-09 11:04:39 -05:00
|
|
|
|
}
|
2011-10-23 07:11:22 -04:00
|
|
|
|
}
|
2010-10-28 18:20:31 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If the user did not specify a config, read the system wgetrc and ~/.wgetrc. */
|
2014-01-17 04:46:38 -05:00
|
|
|
|
if (noconfig == false && use_userconfig == false)
|
2010-10-28 18:20:31 -04:00
|
|
|
|
initialize ();
|
|
|
|
|
|
|
|
|
|
opterr = 0;
|
|
|
|
|
optind = 0;
|
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
longindex = -1;
|
|
|
|
|
while ((ret = getopt_long (argc, argv,
|
2006-07-14 09:25:50 -04:00
|
|
|
|
short_options, long_options, &longindex)) != -1)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-11-06 15:20:43 -05:00
|
|
|
|
int val;
|
2014-05-11 17:20:49 -04:00
|
|
|
|
struct cmdline_option *cmdopt;
|
2003-11-06 15:20:43 -05:00
|
|
|
|
|
|
|
|
|
/* If LONGINDEX is unchanged, it means RET is referring a short
|
2006-07-14 09:25:50 -04:00
|
|
|
|
option. */
|
2003-11-06 15:20:43 -05:00
|
|
|
|
if (longindex == -1)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
|
|
|
|
if (ret == '?')
|
|
|
|
|
{
|
2012-02-23 05:56:44 -05:00
|
|
|
|
print_usage (1);
|
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
fprintf (stderr, _("Try `%s --help' for more options.\n"),
|
2014-05-26 05:51:58 -04:00
|
|
|
|
exec_name);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_PARSE_ERROR);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
|
|
|
|
/* Find the short option character in the mapping. */
|
|
|
|
|
longindex = optmap[ret - 32];
|
|
|
|
|
}
|
2003-11-06 15:20:43 -05:00
|
|
|
|
val = long_options[longindex].val;
|
|
|
|
|
|
|
|
|
|
/* Use the retrieved value to locate the option in the
|
2006-07-14 09:25:50 -04:00
|
|
|
|
option_data array, and to see if we're dealing with the
|
|
|
|
|
negated "--no-FOO" variant of the boolean option "--foo". */
|
2014-05-11 17:20:49 -04:00
|
|
|
|
cmdopt = &option_data[val & ~BOOLEAN_NEG_MARKER];
|
|
|
|
|
switch (cmdopt->type)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
|
|
|
|
case OPT_VALUE:
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval (cmdopt->data, optarg, cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
case OPT_BOOLEAN:
|
|
|
|
|
if (optarg)
|
|
|
|
|
/* The user has specified a value -- use it. */
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval (cmdopt->data, optarg, cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* NEG is true for `--no-FOO' style boolean options. */
|
|
|
|
|
bool neg = !!(val & BOOLEAN_NEG_MARKER);
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval (cmdopt->data, neg ? "0" : "1", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case OPT_FUNCALL:
|
|
|
|
|
{
|
2014-05-11 17:20:49 -04:00
|
|
|
|
void (*func) (void) = (void (*) (void)) cmdopt->data;
|
2006-07-14 09:25:50 -04:00
|
|
|
|
func ();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case OPT__APPEND_OUTPUT:
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("logfile", optarg, cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
append_to_log = true;
|
|
|
|
|
break;
|
|
|
|
|
case OPT__EXECUTE:
|
|
|
|
|
run_command (optarg);
|
|
|
|
|
break;
|
|
|
|
|
case OPT__NO:
|
|
|
|
|
{
|
|
|
|
|
/* We support real --no-FOO flags now, but keep these
|
|
|
|
|
short options for convenience and backward
|
|
|
|
|
compatibility. */
|
2010-10-15 21:04:25 -04:00
|
|
|
|
for (p = optarg; p && *p; p++)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
switch (*p)
|
|
|
|
|
{
|
|
|
|
|
case 'v':
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("verbose", "0", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
case 'H':
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("addhostdir", "0", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("dirstruct", "0", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
case 'c':
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("noclobber", "1", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
case 'p':
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("noparent", "1", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("%s: illegal option -- `-n%c'\n"),
|
|
|
|
|
exec_name, *p);
|
|
|
|
|
print_usage (1);
|
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
fprintf (stderr, _("Try `%s --help' for more options.\n"),
|
|
|
|
|
exec_name);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case OPT__PARENT:
|
|
|
|
|
case OPT__CLOBBER:
|
|
|
|
|
{
|
|
|
|
|
/* The wgetrc commands are named noparent and noclobber,
|
|
|
|
|
so we must revert the meaning of the cmdline options
|
|
|
|
|
before passing the value to setoptval. */
|
|
|
|
|
bool flag = true;
|
|
|
|
|
if (optarg)
|
2007-10-14 17:46:24 -04:00
|
|
|
|
flag = (*optarg == '1' || c_tolower (*optarg) == 'y'
|
|
|
|
|
|| (c_tolower (optarg[0]) == 'o'
|
|
|
|
|
&& c_tolower (optarg[1]) == 'n'));
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval (cmdopt->type == OPT__PARENT ? "noparent" : "noclobber",
|
|
|
|
|
flag ? "0" : "1", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case OPT__DONT_REMOVE_LISTING:
|
2014-05-11 17:20:49 -04:00
|
|
|
|
setoptval ("removelisting", "0", cmdopt->long_name);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
break;
|
|
|
|
|
}
|
2003-11-06 15:20:43 -05:00
|
|
|
|
|
|
|
|
|
longindex = -1;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2000-08-30 07:26:21 -04:00
|
|
|
|
|
2006-07-14 09:25:50 -04:00
|
|
|
|
nurl = argc - optind;
|
|
|
|
|
|
2014-02-01 04:46:30 -05:00
|
|
|
|
/* If we do not have Debug support compiled in AND Wget is invoked with the
|
|
|
|
|
* --debug switch, instead of failing, we silently turn it into a no-op. For
|
|
|
|
|
* this no-op, we explicitly set opt.debug to false and hence none of the
|
|
|
|
|
* Debug output messages will be printed.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef ENABLE_DEBUG
|
|
|
|
|
if (opt.debug)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("Debugging support not compiled in. "
|
|
|
|
|
"Ignoring --debug flag.\n"));
|
|
|
|
|
opt.debug = false;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-08-30 07:26:21 -04:00
|
|
|
|
/* All user options have now been processed, so it's now safe to do
|
|
|
|
|
interoption dependency checks. */
|
2014-04-30 19:04:11 -04:00
|
|
|
|
|
2010-12-09 07:27:17 -05:00
|
|
|
|
if (opt.noclobber && opt.convert_links)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("Both --no-clobber and --convert-links were specified,"
|
2012-07-07 04:27:09 -04:00
|
|
|
|
" only --convert-links will be used.\n"));
|
2010-12-09 07:27:17 -05:00
|
|
|
|
opt.noclobber = false;
|
|
|
|
|
}
|
|
|
|
|
|
2000-08-30 07:26:21 -04:00
|
|
|
|
if (opt.reclevel == 0)
|
2007-10-15 01:41:29 -04:00
|
|
|
|
opt.reclevel = INFINITE_RECURSION; /* see recur.h for commentary */
|
|
|
|
|
|
|
|
|
|
if (opt.spider || opt.delete_after)
|
|
|
|
|
opt.no_dirstruct = true;
|
2000-08-30 07:26:21 -04:00
|
|
|
|
|
|
|
|
|
if (opt.page_requisites && !opt.recursive)
|
|
|
|
|
{
|
2003-10-30 08:00:29 -05:00
|
|
|
|
/* Don't set opt.recursive here because it would confuse the FTP
|
2006-07-14 09:25:50 -04:00
|
|
|
|
code. Instead, call retrieve_tree below when either
|
|
|
|
|
page_requisites or recursive is requested. */
|
2000-08-30 07:26:21 -04:00
|
|
|
|
opt.reclevel = 0;
|
|
|
|
|
if (!opt.no_dirstruct)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
opt.dirstruct = 1; /* normally handled by cmd_spec_recursive() */
|
2000-08-30 07:26:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (opt.verbose == -1)
|
|
|
|
|
opt.verbose = !opt.quiet;
|
|
|
|
|
|
2014-04-30 19:04:11 -04:00
|
|
|
|
if (opt.verbose == 1)
|
|
|
|
|
opt.show_progress = true;
|
2013-04-12 14:14:32 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Sanity checks. */
|
|
|
|
|
if (opt.verbose && opt.quiet)
|
|
|
|
|
{
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("Can't be verbose and quiet at the same time.\n"));
|
|
|
|
|
print_usage (1);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
if (opt.timestamping && opt.noclobber)
|
|
|
|
|
{
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("\
|
1999-12-02 02:42:23 -05:00
|
|
|
|
Can't timestamp and not clobber old files at the same time.\n"));
|
2010-05-31 03:45:03 -04:00
|
|
|
|
print_usage (1);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2003-11-19 08:25:20 -05:00
|
|
|
|
#ifdef ENABLE_IPV6
|
2003-11-15 19:31:58 -05:00
|
|
|
|
if (opt.ipv4_only && opt.ipv6_only)
|
|
|
|
|
{
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("Cannot specify both --inet4-only and --inet6-only.\n"));
|
|
|
|
|
print_usage (1);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2003-11-15 19:31:58 -05:00
|
|
|
|
}
|
2003-11-19 08:25:20 -05:00
|
|
|
|
#endif
|
2008-04-27 05:15:31 -04:00
|
|
|
|
if (opt.output_document)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
2009-09-21 23:39:44 -04:00
|
|
|
|
if (opt.convert_links
|
2008-04-27 05:15:31 -04:00
|
|
|
|
&& (nurl > 1 || opt.page_requisites || opt.recursive))
|
|
|
|
|
{
|
|
|
|
|
fputs (_("\
|
|
|
|
|
Cannot specify both -k and -O if multiple URLs are given, or in combination\n\
|
2010-05-31 03:45:03 -04:00
|
|
|
|
with -p or -r. See the manual for details.\n\n"), stderr);
|
|
|
|
|
print_usage (1);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2008-04-27 05:15:31 -04:00
|
|
|
|
}
|
|
|
|
|
if (opt.page_requisites
|
|
|
|
|
|| opt.recursive)
|
|
|
|
|
{
|
|
|
|
|
logprintf (LOG_NOTQUIET, "%s", _("\
|
|
|
|
|
WARNING: combining -O with -r or -p will mean that all downloaded content\n\
|
|
|
|
|
will be placed in the single file you specified.\n\n"));
|
|
|
|
|
}
|
|
|
|
|
if (opt.timestamping)
|
|
|
|
|
{
|
2008-05-13 02:54:48 -04:00
|
|
|
|
logprintf (LOG_NOTQUIET, "%s", _("\
|
|
|
|
|
WARNING: timestamping does nothing in combination with -O. See the manual\n\
|
|
|
|
|
for details.\n\n"));
|
2008-05-13 01:22:56 -04:00
|
|
|
|
opt.timestamping = false;
|
2008-04-27 05:15:31 -04:00
|
|
|
|
}
|
2009-09-21 23:39:44 -04:00
|
|
|
|
if (opt.noclobber && file_exists_p(opt.output_document))
|
|
|
|
|
{
|
2008-05-14 17:10:37 -04:00
|
|
|
|
/* Check if output file exists; if it does, exit. */
|
2010-05-31 03:45:03 -04:00
|
|
|
|
logprintf (LOG_VERBOSE,
|
|
|
|
|
_("File `%s' already there; not retrieving.\n"),
|
|
|
|
|
opt.output_document);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2009-09-21 23:39:44 -04:00
|
|
|
|
}
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
2003-11-15 19:31:58 -05:00
|
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
|
if (opt.warc_filename != 0)
|
|
|
|
|
{
|
|
|
|
|
if (opt.noclobber)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("WARC output does not work with --no-clobber, "
|
|
|
|
|
"--no-clobber will be disabled.\n"));
|
|
|
|
|
opt.noclobber = false;
|
|
|
|
|
}
|
|
|
|
|
if (opt.timestamping)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("WARC output does not work with timestamping, "
|
|
|
|
|
"timestamping will be disabled.\n"));
|
|
|
|
|
opt.timestamping = false;
|
|
|
|
|
}
|
|
|
|
|
if (opt.spider)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("WARC output does not work with --spider.\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2011-11-04 17:25:00 -04:00
|
|
|
|
}
|
2014-03-19 11:42:04 -04:00
|
|
|
|
if (opt.always_rest || opt.start_pos >= 0)
|
2011-11-04 17:25:00 -04:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
2014-03-19 11:42:04 -04:00
|
|
|
|
_("WARC output does not work with --continue or"
|
|
|
|
|
" --start-pos, they will be disabled.\n"));
|
2011-11-04 17:25:00 -04:00
|
|
|
|
opt.always_rest = false;
|
2014-03-19 11:42:04 -04:00
|
|
|
|
opt.start_pos = -1;
|
2011-11-04 17:25:00 -04:00
|
|
|
|
}
|
|
|
|
|
if (opt.warc_cdx_dedup_filename != 0 && !opt.warc_digests_enabled)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("Digests are disabled; WARC deduplication will "
|
|
|
|
|
"not find duplicate records.\n"));
|
|
|
|
|
}
|
|
|
|
|
if (opt.warc_keep_log)
|
|
|
|
|
{
|
2012-04-22 12:36:09 -04:00
|
|
|
|
opt.progress_type = xstrdup ("dot");
|
2011-11-04 17:25:00 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-30 18:28:23 -04:00
|
|
|
|
if (opt.ask_passwd && opt.passwd)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("Cannot specify both --ask-password and --password.\n"));
|
|
|
|
|
print_usage (1);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
2003-11-15 19:31:58 -05:00
|
|
|
|
|
2014-03-19 11:42:04 -04:00
|
|
|
|
if (opt.start_pos >= 0 && opt.always_rest)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr,
|
|
|
|
|
_("Specifying both --start-pos and --continue is not "
|
|
|
|
|
"recommended; --continue will be disabled.\n"));
|
|
|
|
|
opt.always_rest = false;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (!nurl && !opt.input_filename)
|
|
|
|
|
{
|
|
|
|
|
/* No URL specified. */
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("%s: missing URL\n"), exec_name);
|
|
|
|
|
print_usage (1);
|
2012-02-23 05:56:44 -05:00
|
|
|
|
fprintf (stderr, "\n");
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* #### Something nicer should be printed here -- similar to the
|
2006-07-14 09:25:50 -04:00
|
|
|
|
pre-1.5 `--help' page. */
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("Try `%s --help' for more options.\n"), exec_name);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-09 15:18:23 -04:00
|
|
|
|
/* Compile the regular expressions. */
|
|
|
|
|
switch (opt.regex_type)
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_LIBPCRE
|
|
|
|
|
case regex_type_pcre:
|
|
|
|
|
opt.regex_compile_fun = compile_pcre_regex;
|
|
|
|
|
opt.regex_match_fun = match_pcre_regex;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
case regex_type_posix:
|
|
|
|
|
default:
|
|
|
|
|
opt.regex_compile_fun = compile_posix_regex;
|
|
|
|
|
opt.regex_match_fun = match_posix_regex;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (opt.acceptregex_s)
|
|
|
|
|
{
|
|
|
|
|
opt.acceptregex = opt.regex_compile_fun (opt.acceptregex_s);
|
|
|
|
|
if (!opt.acceptregex)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2012-05-09 15:18:23 -04:00
|
|
|
|
}
|
|
|
|
|
if (opt.rejectregex_s)
|
|
|
|
|
{
|
|
|
|
|
opt.rejectregex = opt.regex_compile_fun (opt.rejectregex_s);
|
|
|
|
|
if (!opt.rejectregex)
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2012-05-09 15:18:23 -04:00
|
|
|
|
}
|
2013-04-12 14:14:32 -04:00
|
|
|
|
if (opt.post_data || opt.post_file_name)
|
|
|
|
|
{
|
|
|
|
|
if (opt.post_data && opt.post_file_name)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("You cannot specify both --post-data and --post-file.\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2013-04-12 14:14:32 -04:00
|
|
|
|
}
|
|
|
|
|
else if (opt.method)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("You cannot use --post-data or --post-file along with --method. "
|
|
|
|
|
"--method expects data through --body-data and --body-file options"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2013-04-12 14:14:32 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (opt.body_data || opt.body_file)
|
|
|
|
|
{
|
|
|
|
|
if (!opt.method)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("You must specify a method through --method=HTTPMethod "
|
|
|
|
|
"to use with --body-data or --body-file.\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2013-04-12 14:14:32 -04:00
|
|
|
|
}
|
|
|
|
|
else if (opt.body_data && opt.body_file)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("You cannot specify both --body-data and --body-file.\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2013-04-12 14:14:32 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-05-09 15:18:23 -04:00
|
|
|
|
|
2013-06-16 14:46:50 -04:00
|
|
|
|
/* Set various options as required for opt.method. */
|
|
|
|
|
|
|
|
|
|
/* When user specifies HEAD as the method, we do not wish to download any
|
|
|
|
|
files. Hence, set wget to run in spider mode. */
|
|
|
|
|
if (opt.method && strcasecmp (opt.method, "HEAD") == 0)
|
|
|
|
|
setoptval ("spider", "1", "spider");
|
|
|
|
|
|
2013-04-24 00:54:01 -04:00
|
|
|
|
/* Convert post_data to body-data and post_file_name to body-file options.
|
|
|
|
|
This is required so as to remove redundant code later on in gethttp().
|
|
|
|
|
The --post-data and --post-file options may also be removed in
|
|
|
|
|
the future hence it makes sense to convert them to aliases for
|
|
|
|
|
the more generic --method options.
|
|
|
|
|
This MUST occur only after the sanity checks so as to prevent the
|
|
|
|
|
user from setting both post and body options simultaneously.
|
|
|
|
|
*/
|
|
|
|
|
if (opt.post_data || opt.post_file_name)
|
|
|
|
|
{
|
|
|
|
|
setoptval ("method", "POST", "method");
|
|
|
|
|
if (opt.post_data)
|
|
|
|
|
{
|
|
|
|
|
setoptval ("bodydata", opt.post_data, "body-data");
|
|
|
|
|
opt.post_data = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
setoptval ("bodyfile", opt.post_file_name, "body-file");
|
|
|
|
|
opt.post_file_name = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-24 21:34:28 -04:00
|
|
|
|
#ifdef ENABLE_IRI
|
|
|
|
|
if (opt.enable_iri)
|
|
|
|
|
{
|
2008-07-20 07:10:02 -04:00
|
|
|
|
if (opt.locale && !check_encoding_name (opt.locale))
|
2008-06-19 18:33:02 -04:00
|
|
|
|
opt.locale = NULL;
|
|
|
|
|
|
2008-05-24 21:34:28 -04:00
|
|
|
|
if (!opt.locale)
|
2008-06-19 17:10:06 -04:00
|
|
|
|
opt.locale = find_locale ();
|
2008-05-24 21:34:28 -04:00
|
|
|
|
|
2008-07-20 07:10:02 -04:00
|
|
|
|
if (opt.encoding_remote && !check_encoding_name (opt.encoding_remote))
|
2008-06-19 18:33:02 -04:00
|
|
|
|
opt.encoding_remote = NULL;
|
2008-05-24 21:34:28 -04:00
|
|
|
|
}
|
2008-06-19 16:07:03 -04:00
|
|
|
|
#else
|
2011-03-21 08:14:20 -04:00
|
|
|
|
memset (&dummy_iri, 0, sizeof (dummy_iri));
|
2008-06-19 16:07:03 -04:00
|
|
|
|
if (opt.enable_iri || opt.locale || opt.encoding_remote)
|
|
|
|
|
{
|
|
|
|
|
/* sXXXav : be more specific... */
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("This version does not have support for IRIs\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2008-06-19 16:07:03 -04:00
|
|
|
|
}
|
2008-05-24 21:34:28 -04:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-05-19 05:36:35 -04:00
|
|
|
|
if (opt.ask_passwd)
|
|
|
|
|
{
|
|
|
|
|
opt.passwd = prompt_for_password ();
|
|
|
|
|
|
|
|
|
|
if (opt.passwd == NULL || opt.passwd[0] == '\0')
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2008-05-19 05:36:35 -04:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-05 14:27:52 -04:00
|
|
|
|
#ifdef USE_WATT32
|
2007-09-28 17:47:46 -04:00
|
|
|
|
if (opt.wdebug)
|
|
|
|
|
dbug_init();
|
|
|
|
|
sock_init();
|
|
|
|
|
#else
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (opt.background)
|
|
|
|
|
fork_to_background ();
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#endif
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2001-12-10 00:31:45 -05:00
|
|
|
|
/* Initialize progress. Have to do this after the options are
|
|
|
|
|
processed so we know where the log file is. */
|
2014-04-30 19:04:11 -04:00
|
|
|
|
if (opt.show_progress)
|
2001-12-10 00:31:45 -05:00
|
|
|
|
set_progress_implementation (opt.progress_type);
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Fill in the arguments. */
|
2003-10-06 20:47:08 -04:00
|
|
|
|
url = alloca_array (char *, nurl + 1);
|
2012-02-23 05:45:05 -05:00
|
|
|
|
if (url == NULL)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("Memory allocation problem\n"));
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_PARSE_ERROR);
|
2012-02-23 05:45:05 -05:00
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
for (i = 0; i < nurl; i++, optind++)
|
|
|
|
|
{
|
2001-11-21 19:24:28 -05:00
|
|
|
|
char *rewritten = rewrite_shorthand_url (argv[optind]);
|
2001-11-18 20:14:14 -05:00
|
|
|
|
if (rewritten)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
url[i] = rewritten;
|
2001-11-18 20:14:14 -05:00
|
|
|
|
else
|
2006-07-14 09:25:50 -04:00
|
|
|
|
url[i] = xstrdup (argv[optind]);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
url[i] = NULL;
|
|
|
|
|
|
|
|
|
|
/* Initialize logging. */
|
|
|
|
|
log_init (opt.lfilename, append_to_log);
|
|
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
|
/* Open WARC file. */
|
|
|
|
|
if (opt.warc_filename != 0)
|
|
|
|
|
warc_init ();
|
|
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
|
DEBUGP (("DEBUG output created by Wget %s on %s.\n\n",
|
2009-07-04 19:15:26 -04:00
|
|
|
|
version_string, OS_TYPE));
|
2001-04-08 18:25:24 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Open the output filename if necessary. */
|
2008-04-22 17:48:36 -04:00
|
|
|
|
|
|
|
|
|
/* 2005-04-17 SMS.
|
|
|
|
|
Note that having the output_stream ("-O") file opened here for an FTP
|
|
|
|
|
URL rather than in getftp() (ftp.c) (and the http equivalent) rather
|
|
|
|
|
limits the ability in VMS to open the file differently for ASCII
|
|
|
|
|
versus binary FTP there. (Of course, doing it here allows a open
|
|
|
|
|
failure to be detected immediately, without first connecting to the
|
|
|
|
|
server.)
|
|
|
|
|
*/
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (opt.output_document)
|
|
|
|
|
{
|
|
|
|
|
if (HYPHENP (opt.output_document))
|
2008-06-01 20:28:44 -04:00
|
|
|
|
{
|
|
|
|
|
#ifdef WINDOWS
|
2011-05-23 15:56:44 -04:00
|
|
|
|
_setmode (_fileno (stdout), _O_BINARY);
|
2008-06-01 20:28:44 -04:00
|
|
|
|
#endif
|
|
|
|
|
output_stream = stdout;
|
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
else
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
|
|
|
|
struct_fstat st;
|
2008-04-22 17:48:36 -04:00
|
|
|
|
|
|
|
|
|
#ifdef __VMS
|
|
|
|
|
/* Common fopen() optional arguments:
|
|
|
|
|
sequential access only, access callback function.
|
|
|
|
|
*/
|
|
|
|
|
# define FOPEN_OPT_ARGS , "fop=sqo", "acc", acc_cb, &open_id
|
|
|
|
|
int open_id = 7;
|
|
|
|
|
#else /* def __VMS */
|
|
|
|
|
# define FOPEN_OPT_ARGS
|
|
|
|
|
#endif /* def __VMS [else] */
|
|
|
|
|
|
2006-07-14 09:25:50 -04:00
|
|
|
|
output_stream = fopen (opt.output_document,
|
2008-04-22 17:48:36 -04:00
|
|
|
|
opt.always_rest ? "ab" : "wb"
|
|
|
|
|
FOPEN_OPT_ARGS);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
if (output_stream == NULL)
|
|
|
|
|
{
|
|
|
|
|
perror (opt.output_document);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
|
|
|
|
if (fstat (fileno (output_stream), &st) == 0 && S_ISREG (st.st_mode))
|
|
|
|
|
output_stream_regular = true;
|
|
|
|
|
}
|
2010-05-27 06:45:15 -04:00
|
|
|
|
if (!output_stream_regular && opt.convert_links)
|
|
|
|
|
{
|
2010-05-31 03:45:03 -04:00
|
|
|
|
fprintf (stderr, _("-k can be used together with -O only if \
|
|
|
|
|
outputting to a regular file.\n"));
|
|
|
|
|
print_usage (1);
|
2014-06-09 02:53:10 -04:00
|
|
|
|
exit (WGET_EXIT_GENERIC_ERROR);
|
2010-05-27 06:45:15 -04:00
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#ifdef __VMS
|
|
|
|
|
/* Set global ODS5 flag according to the specified destination (if
|
|
|
|
|
any), otherwise according to the current default device.
|
|
|
|
|
*/
|
|
|
|
|
if (output_stream == NULL)
|
2010-05-31 03:45:03 -04:00
|
|
|
|
set_ods5_dest( "SYS$DISK");
|
2008-04-22 17:48:36 -04:00
|
|
|
|
else if (output_stream != stdout)
|
2010-05-31 03:45:03 -04:00
|
|
|
|
set_ods5_dest( opt.output_document);
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#endif /* def __VMS */
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#ifdef WINDOWS
|
|
|
|
|
ws_startup ();
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#ifdef SIGHUP
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Setup the signal handler to redirect output when hangup is
|
|
|
|
|
received. */
|
|
|
|
|
if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
|
|
|
|
|
signal(SIGHUP, redirect_output_signal);
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#endif
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* ...and do the same for SIGUSR1. */
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#ifdef SIGUSR1
|
1999-12-02 02:42:23 -05:00
|
|
|
|
signal (SIGUSR1, redirect_output_signal);
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGPIPE
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Writing to a closed socket normally signals SIGPIPE, and the
|
|
|
|
|
process exits. What we want is to ignore SIGPIPE and just check
|
|
|
|
|
for the return value of write(). */
|
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#endif
|
2001-11-22 23:59:52 -05:00
|
|
|
|
#ifdef SIGWINCH
|
|
|
|
|
signal (SIGWINCH, progress_handle_sigwinch);
|
|
|
|
|
#endif
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
/* Retrieve the URLs from argument list. */
|
|
|
|
|
for (t = url; *t; t++)
|
|
|
|
|
{
|
2001-11-24 22:10:34 -05:00
|
|
|
|
char *filename = NULL, *redirected_URL = NULL;
|
2009-02-01 13:03:51 -05:00
|
|
|
|
int dt, url_err;
|
2009-06-28 23:55:01 -04:00
|
|
|
|
/* Need to do a new struct iri every time, because
|
|
|
|
|
* retrieve_url may modify it in some circumstances,
|
|
|
|
|
* currently. */
|
|
|
|
|
struct iri *iri = iri_new ();
|
2009-06-29 00:15:22 -04:00
|
|
|
|
struct url *url_parsed;
|
2009-06-28 23:55:01 -04:00
|
|
|
|
|
|
|
|
|
set_uri_encoding (iri, opt.locale, true);
|
2009-06-29 00:15:22 -04:00
|
|
|
|
url_parsed = url_parse (*t, &url_err, iri, true);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2009-02-01 13:03:51 -05:00
|
|
|
|
if (!url_parsed)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
{
|
2009-02-01 13:03:51 -05:00
|
|
|
|
char *error = url_error (*t, url_err);
|
|
|
|
|
logprintf (LOG_NOTQUIET, "%s: %s.\n",*t, error);
|
|
|
|
|
xfree (error);
|
2011-04-23 15:31:41 -04:00
|
|
|
|
inform_exit_status (URLERROR);
|
2009-02-01 13:03:51 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ((opt.recursive || opt.page_requisites)
|
|
|
|
|
&& (url_scheme (*t) != SCHEME_FTP || url_uses_proxy (url_parsed)))
|
|
|
|
|
{
|
|
|
|
|
int old_follow_ftp = opt.follow_ftp;
|
2006-07-14 09:25:50 -04:00
|
|
|
|
|
2009-02-01 13:03:51 -05:00
|
|
|
|
/* Turn opt.follow_ftp on in case of recursive FTP retrieval */
|
2009-09-21 23:39:44 -04:00
|
|
|
|
if (url_scheme (*t) == SCHEME_FTP)
|
2009-02-01 13:03:51 -05:00
|
|
|
|
opt.follow_ftp = 1;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2010-10-06 06:24:38 -04:00
|
|
|
|
retrieve_tree (url_parsed, NULL);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
|
2009-02-01 13:03:51 -05:00
|
|
|
|
opt.follow_ftp = old_follow_ftp;
|
|
|
|
|
}
|
|
|
|
|
else
|
2009-06-25 04:14:11 -04:00
|
|
|
|
{
|
2010-10-06 06:24:38 -04:00
|
|
|
|
retrieve_url (url_parsed, *t, &filename, &redirected_URL, NULL,
|
|
|
|
|
&dt, opt.recursive, iri, true);
|
2009-06-25 04:14:11 -04:00
|
|
|
|
}
|
2000-10-23 23:43:47 -04:00
|
|
|
|
|
2012-06-04 06:25:30 -04:00
|
|
|
|
if (opt.delete_after && filename != NULL && file_exists_p (filename))
|
2009-02-01 13:03:51 -05:00
|
|
|
|
{
|
|
|
|
|
DEBUGP (("Removing file due to --delete-after in main():\n"));
|
|
|
|
|
logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
|
|
|
|
|
if (unlink (filename))
|
|
|
|
|
logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
|
|
|
|
|
}
|
|
|
|
|
xfree_null (redirected_URL);
|
|
|
|
|
xfree_null (filename);
|
|
|
|
|
url_free (url_parsed);
|
2006-07-14 09:25:50 -04:00
|
|
|
|
}
|
2009-06-28 23:55:01 -04:00
|
|
|
|
iri_free (iri);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* And then from the input file, if any. */
|
|
|
|
|
if (opt.input_filename)
|
|
|
|
|
{
|
|
|
|
|
int count;
|
2011-04-23 15:31:41 -04:00
|
|
|
|
int status;
|
|
|
|
|
status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
|
|
|
|
|
inform_exit_status (status);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (!count)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
|
|
|
|
|
opt.input_filename);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2006-05-25 12:11:29 -04:00
|
|
|
|
|
|
|
|
|
/* Print broken links. */
|
|
|
|
|
if (opt.recursive && opt.spider)
|
2010-05-31 03:45:03 -04:00
|
|
|
|
print_broken_links ();
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Print the downloaded sum. */
|
2005-09-17 09:07:00 -04:00
|
|
|
|
if ((opt.recursive || opt.page_requisites
|
|
|
|
|
|| nurl > 1
|
|
|
|
|
|| (opt.input_filename && total_downloaded_bytes != 0))
|
|
|
|
|
&&
|
|
|
|
|
total_downloaded_bytes != 0)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2010-10-24 15:45:30 -04:00
|
|
|
|
double end_time = ptimer_measure (timer);
|
|
|
|
|
ptimer_destroy (timer);
|
|
|
|
|
|
|
|
|
|
char *wall_time = xstrdup (secs_to_human_time (end_time - start_time));
|
|
|
|
|
char *download_time = xstrdup (secs_to_human_time (total_download_time));
|
1999-12-02 02:42:23 -05:00
|
|
|
|
logprintf (LOG_NOTQUIET,
|
2014-05-26 05:51:58 -04:00
|
|
|
|
_("FINISHED --%s--\nTotal wall clock time: %s\n"
|
|
|
|
|
"Downloaded: %d files, %s in %s (%s)\n"),
|
|
|
|
|
datetime_str (time (NULL)),
|
|
|
|
|
wall_time,
|
|
|
|
|
numurls,
|
|
|
|
|
human_readable (total_downloaded_bytes, 10, 1),
|
|
|
|
|
download_time,
|
|
|
|
|
retr_rate (total_downloaded_bytes, total_download_time));
|
2010-10-24 15:45:30 -04:00
|
|
|
|
xfree (wall_time);
|
|
|
|
|
xfree (download_time);
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Print quota warning, if exceeded. */
|
2003-10-11 09:57:11 -04:00
|
|
|
|
if (opt.quota && total_downloaded_bytes > opt.quota)
|
2006-07-14 09:25:50 -04:00
|
|
|
|
logprintf (LOG_NOTQUIET,
|
|
|
|
|
_("Download quota of %s EXCEEDED!\n"),
|
2014-05-19 14:45:45 -04:00
|
|
|
|
human_readable (opt.quota, 10, 1));
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2001-04-08 18:25:24 -04:00
|
|
|
|
|
2005-03-20 10:07:40 -05:00
|
|
|
|
if (opt.cookies_output)
|
|
|
|
|
save_cookies ();
|
2001-04-08 18:25:24 -04:00
|
|
|
|
|
2000-12-17 13:52:52 -05:00
|
|
|
|
if (opt.convert_links && !opt.delete_after)
|
2003-10-06 20:47:08 -04:00
|
|
|
|
convert_all_links ();
|
2001-11-21 19:24:28 -05:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
cleanup ();
|
2001-11-21 19:24:28 -05:00
|
|
|
|
|
2011-10-23 07:11:22 -04:00
|
|
|
|
exit (get_exit_status ());
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-10-27 10:13:40 -04:00
|
|
|
|
#endif /* TESTING */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#if defined(SIGHUP) || defined(SIGUSR1)
|
2005-06-30 08:15:08 -04:00
|
|
|
|
|
|
|
|
|
/* So the signal_name check doesn't blow when only one is available. */
|
|
|
|
|
#ifndef SIGHUP
|
|
|
|
|
# define SIGHUP -1
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef SIGUSR1
|
|
|
|
|
# define SIGUSR1 -1
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Hangup signal handler. When wget receives SIGHUP or SIGUSR1, it
|
|
|
|
|
will proceed operation as usual, trying to write into a log file.
|
2005-06-19 19:03:27 -04:00
|
|
|
|
If that is impossible, the output will be turned off. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-19 19:03:27 -04:00
|
|
|
|
static void
|
1999-12-02 02:42:23 -05:00
|
|
|
|
redirect_output_signal (int sig)
|
|
|
|
|
{
|
2003-12-14 08:35:27 -05:00
|
|
|
|
const char *signal_name = (sig == SIGHUP ? "SIGHUP" :
|
2006-07-14 09:25:50 -04:00
|
|
|
|
(sig == SIGUSR1 ? "SIGUSR1" :
|
|
|
|
|
"WTF?!"));
|
2001-12-10 00:31:45 -05:00
|
|
|
|
log_request_redirect_output (signal_name);
|
2001-12-06 02:14:35 -05:00
|
|
|
|
progress_schedule_redirect ();
|
2001-12-10 00:31:45 -05:00
|
|
|
|
signal (sig, redirect_output_signal);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-06-21 21:01:12 -04:00
|
|
|
|
#endif
|
2006-07-14 09:25:50 -04:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vim: et ts=2 sw=2
|
|
|
|
|
*/
|