-->

Wednesday, August 28, 2013

Histogram of your Evernote tags in one line

1. Export all your notes in an enex file:

/home/luca/tmp/bridge/all.enex

Run the following line

echo -e "import re\nfor tag in re.findall('.*?',open('/home/luca/tmp/bridge/all.enex').read(),re.DOTALL):print tag" | python | sed -e 's@@@' -e 's@@@' | sort | uniq -c | sort -rg | m

No comments:

Post a Comment