jmou/dumb-cli-tricks
git clone https://github.com/jmou/dumb-cli-tricks.git
git clone git@github.com:jmou/dumb-cli-tricks.git
Loading…
(top)/demo/.scrape.mk
language: Makefile
382 Bytes / 8 lines / 6 loc
History
View raw
cookies.txt login.html:
	curl -L -o login.html -c cookies.txt https://www.recurse.com/calendar

csrf.txt: login.html
	grep csrf-token login.html | cut -d\" -f4 | tr -d '\n' > csrf.txt

calendar.html: cookies.txt csrf.txt password
	curl -L -o calendar.html -b cookies.txt https://www.recurse.com/sessions -F email=joe@mou.fo -F 'password=<password' -F 'authenticity_token=<csrf.txt'