SMS thread printout howto?
-
Hello folks,
could anyone please suggest me a way how to do a printout of an SMS thread? Using history.sqlite database of messaging app and some Linux program...
Thank you for thinking about! -
@uwahl said in SMS thread printout howto?:
Hello folks,
could anyone please suggest me a way how to do a printout of an SMS thread? Using history.sqlite database of messaging app and some Linux program...
Thank you for thinking about!i'm afk, so will be short sorry
Database for sms is stored in ~/.local/share/history-service/history.sqlite
As the name suggest it is a sqlite database so you can copy it to your computer and use a sqlite browser.
There is a Thread table iirc where you can play with.
Admitting you know some SQL.There is a CLI tool also on UT so you can just do
sqlite [thedbabsolutepath] "SELECT * FROM threads;"