[ prog / sol / mona ]

prog


Do you download documentation for offline browsing?

12 2022-08-27 20:32

Usually I view the online versions, but sometimes I use a shell script to download individual pages I like. (It takes a url as an argument.)

#!/usr/bin/bash
wget \
	--page-requisites \
	--html-extension \
	--convert-links \
	--execute robots=off \
	--user-agent="" \
	--wait=10 \
	--random-wait \
	$1
22


VIP:

do not edit these