Skip to content

Instantly share code, notes, and snippets.

@molecyll
Forked from pepijn/ticketswap.sh
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save molecyll/4e480294182d35d9babc to your computer and use it in GitHub Desktop.
Save molecyll/4e480294182d35d9babc to your computer and use it in GitHub Desktop.
#!/bin/bash
set -x
HOST=https://www.ticketswap.nl
FISSA="$1" # Example: /53148/de-beste-singer-songwriter-van-nederland
while :
do
date
URI=$(curl -s "$HOST$FISSA" \
-H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36' \
-H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' -H 'cache-control: max-age=0' \
--compressed |
grep -B 3 offerurl | grep Aangeboden -A 3 | grep offerurl | head -n 1 | awk -F\" '{print $2}')
if [ ! $URI ]; then
continue
fi
say -v "good news" "I can make you feel better"
mail -s "TICKET" yllnushi@gmail.com -- -f yllnushi@gmail.com <<EOF
URI="$(curl -s "https://www.ticketswap.nl$URI" \
-H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36' \
-H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' -H 'cache-control: max-age=0' \
--compressed |
grep /reserveren/ | head -n 1 | awk -F\" '{print $2}')"
if [ $URI ]; then
open "$HOST$URI"
fi
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment