copy website command

This commit is contained in:
Malin Freeborn 2025-01-07 00:18:57 +01:00
parent 98ffbe660a
commit d8af949846
Signed by: andonome
GPG Key ID: 52295D2377F4D70F

View File

@ -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
```