Skip to content

Instantly share code, notes, and snippets.

@stefanocudini
Last active September 18, 2019 20:18
Show Gist options
  • Save stefanocudini/ed7c78543ab90af27adc888e13e77217 to your computer and use it in GitHub Desktop.
Save stefanocudini/ed7c78543ab90af27adc888e13e77217 to your computer and use it in GitHub Desktop.
list each words in this directory
#!/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