Skip to content

Instantly share code, notes, and snippets.

@mperlet
Created April 6, 2017 12:58
Show Gist options
  • Select an option

  • Save mperlet/55c32dc956cedd6078b8a9e2a79b4e0b to your computer and use it in GitHub Desktop.

Select an option

Save mperlet/55c32dc956cedd6078b8a9e2a79b4e0b to your computer and use it in GitHub Desktop.
list most used latex commands
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