make all file names lowercase

This commit is contained in:
2025-08-14 06:35:44 +02:00
parent 33a959fcea
commit a55712032b
13 changed files with 0 additions and 0 deletions

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