Skip to content

Instantly share code, notes, and snippets.

View husnilk's full-sized avatar
🎯
Focusing

husnilk

🎯
Focusing
View GitHub Profile
@husnilk
husnilk / webdownloader.sh
Last active January 16, 2019 06:24
Command for downloading website via wget The options are: --recursive: download the entire Web site. --domains website.org: don't follow links outside website.org. --no-parent: don't follow links outside the directory tutorials/html/. --page-requisites: get all the elements that compose the page (images, CSS and so on). --html-extension: save fi…
$wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--domains [domain.org] \
--no-parent \
[http://domain.org/target/url/]