Created
March 16, 2013 01:38
-
-
Save usami/5174514 to your computer and use it in GitHub Desktop.
Download all entries in your Pocket (http://getpocket.com).
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/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