Pointless Rubenerd post stats
InternetI realised with all my exported posts in a directory, I can run some pointless stats. For example, these are the number of posts that start with the word “the”:
$ ls the* | wc -l ==> 296
And that have the word “the” in it anywhere:
$ ls *the* | wc -l ==> 791
And K-On:
$ ls *k-on* | wc -l ==> 53
And that have the greatest name in the world in it:
$ ls *saskatchewan* | wc -l ls: *saskatchewan*: No such file or directory ==> 0
Hmm, clearly I have work to do.