Skip to content

Instantly share code, notes, and snippets.

@eddsteel
Created December 22, 2011 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eddsteel/1511965 to your computer and use it in GitHub Desktop.
Save eddsteel/1511965 to your computer and use it in GitHub Desktop.
Extract F-Spot tags from photos.db to a text file.
sqlite photos.db 'select p.base_uri, p.filename, t.name from photos p, tags t, photo_tags pt where p.id = pt.photo_id and t.id = pt.tag_id;' >> photo-tags.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment