Created
April 5, 2013 08:24
-
-
Save saimonmoore/5317553 to your computer and use it in GitHub Desktop.
Bash function to export Skype chat history for a particular conversation
This file contains 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
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