Last active
August 29, 2015 14:00
-
-
Save John07/2144e472c2a4ac39e60e to your computer and use it in GitHub Desktop.
Count the number of open tasks in Wunderlist 2
This file contains hidden or 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
# counts the number of open tasks in Wunderlist across all lists | |
# (pretty sure there's a more elegant way of doing this but works for now) | |
sqlite3 "/Users/USERNAME/Library/Containers/com.wunderkinder.wunderlistdesktop/Data/Library/Application Support/Wunderlist/WKModel.sqlite" "select ZTITLE from ZRESOURCE where ZOWNER1 is not 1 and ZPARENTTASK is null and ZCOMPLETEDAT is null" | wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment