#!/bin/bash
for i in {1..20}
do
echo -e "Retrieving page $i\n"
sleep 2
wkhtmltopdf https://www.binaryspawn.com/$i/ binaryspawn$i.pdf
sleep 2
done
pdfunite may be used to make a single PDF from the individual ones.
©2013-2025 All Rights Reserved.