Last active
September 18, 2019 20:18
-
-
Save stefanocudini/ed7c78543ab90af27adc888e13e77217 to your computer and use it in GitHub Desktop.
list each words in this directory
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
#!/bin/bash | |
grep -rhoE '\w+{3,10}' --exclude-dir=node_modules --exclude-dir='.git' . | sort | uniq -c | sort -n | tail -n 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment