Skip to content

Instantly share code, notes, and snippets.

@emilstahl
Created August 19, 2015 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emilstahl/0100476df7eb5c66ac77 to your computer and use it in GitHub Desktop.
Save emilstahl/0100476df7eb5c66ac77 to your computer and use it in GitHub Desktop.
UnoEuro Backorder
#!/bin/bash
# copy the autologin cookie from your browser
# run /ue.sh list.txt
while IFS='' read -r line || [[ -n "$line" ]]; do
curl -o /dev/null --silent 'https://www.unoeuro.com/controlpanel/backorder.php' -H 'Cookie: language=1; autologin=XXXXXX;' --data 'domain='$line'&extension=dk'
done < "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment