#!/bin/bash
# net/tool/wget - ``wget`` Support

######
# Download Control

# $wget_mirror - Boolean setting to enable mirroring
# Default: false
wget_mirror=false

# $wget_continue - Boolean setting to enable resuming downloads
# Default: false
wget_continue=false

# $wget_prereqs - Boolean setting to download all page requisites
# Default: false
wget_prereqs=false

# $wget_wait_secs - If set, specifies the number of seconds to wait
# between successive requests.  Passed to the ``--wait`` option.
# Default: `none`
#; wget_wait_secs=0.5


######
# Local File and Path Names

# $wget_output - If set, specifies the location to store the output file.
# Passed to the ``--output-document`` option.
# Default: `none`
#; wget_output=/path/to/output

# $wget_prefix - If set, specifies the location to store downloaded documents.
# Passed to the ``--directory-prefix`` option.
# Default: `none`
#; wget_prefix=.

# $wget_directories - Determines whether or not to generate directories
# Default: true
wget_directories=true

# $wget_munge_exts - Bollean setting for adjusting filename extensions
# Default: false
wget_munge_exts=false

# $wget_convert_links - Boolean setting for converting page links
# Default: false
wget_convert_links=false

# $wget_host_dirs - Boolean setting to enable hostname directory generation
# Default: false
wget_host_dirs=false

View the Developer Guide Index

View the Reference Manual Index


Generated on Fri Jul 28 14:36:31 PDT 2017 by mcsh d14 v0.23.0.