Wget: Difference between revisions

From wikinotes
No edit summary
Line 12: Line 12:
= Usage =
= Usage =
<blockquote>
<blockquote>
common flags
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
wget \
wget \

Revision as of 01:20, 14 June 2022

wget helps you download files, or entire websites.

Documentation

man wget https://man.archlinux.org/man/extra/wget/wget.1.en

Usage

common flags

wget \
  --recursive \
  --convert-links \
  --no-parent \
  --tries=1 \
  --timeout=5 \
  -R "*exclude/me*" \
  'https://foo.domain.com'