Created
November 16, 2017 13:01
-
-
Save koppen/9227e27fa0fa7c75cc12c1120cb9aa52 to your computer and use it in GitHub Desktop.
Download n URLs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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