Skip to content

Instantly share code, notes, and snippets.

@wizardishungry
Created December 16, 2010 23:08
Show Gist options
  • Save wizardishungry/744184 to your computer and use it in GitHub Desktop.
Save wizardishungry/744184 to your computer and use it in GitHub Desktop.
example cron script to pull pinboard.in XML export into git for data portability. (Don't run this too often; be nice to the API!)
#!/bin/sh
user='WIZARDISHUNGRY'
password='doyoureallythinkidputmypasswordhere'
path=~/.skel/pinboard.xml
cd `dirname $path`
curl -fsS --user $user:$password -o $path 'https://api.pinboard.in/v1/posts/all'
git add $path
git commit -m 'automated pinboard backup' > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment