Skip to content

Instantly share code, notes, and snippets.

@usami
Created March 16, 2013 01:38
Show Gist options
  • Save usami/5174514 to your computer and use it in GitHub Desktop.
Save usami/5174514 to your computer and use it in GitHub Desktop.
Download all entries in your Pocket (http://getpocket.com).
#!/bin/sh
# before running this script, run the following command
# wget --save-cookies cookies.txt --post-data 'feed_id=****ID****&password=****PASS****' http://getpocket.com/login_process/
i=1
while [ $i -le 60 ]
do
wget --load-cookies cookies.txt -p http://getpocket.com/unread/$i
(( i++ ))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment