Created
April 6, 2017 12:58
-
-
Save mperlet/55c32dc956cedd6078b8a9e2a79b4e0b to your computer and use it in GitHub Desktop.
list most used latex commands
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
| find . -name "*.tex" -exec cat {} \; | sed "s# #\n#g" | sed "s#\t##g" | sort | grep '^\\' | grep -v '\\end' | uniq -c | sort -nr | head -n100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment