Skip to content

Instantly share code, notes, and snippets.

@EldonMcGuinness
Last active November 9, 2019 16:32
Show Gist options
  • Save EldonMcGuinness/d5edb240c9fc3fccc2a73bacc9eaa244 to your computer and use it in GitHub Desktop.
Save EldonMcGuinness/d5edb240c9fc3fccc2a73bacc9eaa244 to your computer and use it in GitHub Desktop.
Download Ubuntu (and perhaps other) Linux ISOs to a watch directory as they are posted to a website
#! /bin/bash
WATCH_DIR=$1
URL=https://ubuntu.com/download/alternative-downloads
cd "$WATCH_DIR"
for i in $(curl -sq "$URL" -- | grep -hoE 'http.+?torrent'); do wget -q $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment