Chci uložit web pro práci offline (nebo čistě jen stáhnout některé soubory).
wget --mirror -p --convert-links -P ./LOCAL-DIR WEBSITE-URL
– mirror – turn on options suitable for mirroring.
– p – download all files that are necessary to properly display a given HTML page.
– convert-linksafter the download, convert the links in document for local viewing.
– P ./LOCAL-DIRsave all the files and directories to the specified directory.