# Word Count in Quiver

From my previous post you might have noticed that I am a fan of Quiver (opens new window). That being said there are some weird edge cases with the tool. One big one is that there is currently no way to get the word count. There is an open feature request (opens new window) to that effect.

Word count is an important vanity stat and so I found a quick workaround. I mostly write in markdown so this method works well for me.

Copy the note as plain text:

copy as plain note.

That will copy the note into your clipboard. Then from the terminal run this command:

pbpaste | wc -w

This will take the contents of the clipboard and pipe that to the wc (opens new window) and count the words.

Again this is not a perfect solution but it gets the job done in a pinch.

Last Modified: 1/5/2021, 2:07:29 PM