diff --git a/networking/scraping/Copy_Website.md b/networking/scraping/Copy_Website.md new file mode 100644 index 0000000..6f0a10f --- /dev/null +++ b/networking/scraping/Copy_Website.md @@ -0,0 +1,15 @@ +--- +title: "Download Website" +tags: [ "networking", "scraping" ] +--- + +```bash +domain=splint.rs +mkdir $domain +cd $domain +wget --recursive --convert-links --backup-converted \ + --page-requisites --level=inf --adjust-extension \ + -U "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" \ + -p --mirror --html-extension --convert-links \ +$domain +```