Skip to content

Instantly share code, notes, and snippets.

@saimonmoore
Created April 5, 2013 08:24
Show Gist options
  • Save saimonmoore/5317553 to your computer and use it in GitHub Desktop.
Save saimonmoore/5317553 to your computer and use it in GitHub Desktop.
Bash function to export Skype chat history for a particular conversation
function export_skype_chat_history {
sqlite3 ~/Library/Application\ Support/Skype/saimonmoore/main.db "SELECT author,timestamp, body_xml FROM messages WHERE dialog_partner = '$1'" > ~/Desktop/skype_chat_history_$1.txt
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment