Skip to content

Instantly share code, notes, and snippets.

@koppen
Created November 16, 2017 13:01
Show Gist options
  • Save koppen/9227e27fa0fa7c75cc12c1120cb9aa52 to your computer and use it in GitHub Desktop.
Save koppen/9227e27fa0fa7c75cc12c1120cb9aa52 to your computer and use it in GitHub Desktop.
Download n URLs
#!/bin/bash
COUNTER=0
while [ $COUNTER -lt 10 ]; do
let COUNTER=COUNTER+1
wget "http://domæne.dk/navn?id=$COUNTER"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment