Skip to content

Instantly share code, notes, and snippets.

@szero
szero / get_southpark
Last active September 10, 2023 04:18
Download a South Park episode from southparkstudios.com
#!/usr/bin/env bash
if [[ $# != 1 ]]; then
echo "Usage: get_south_park <page link>"
exit 0
fi
TD="$(mktemp -d)"
clear_on_exit() {