Skip to content

Count words in a file, and list them in descending order in Windows Console.

Notifications You must be signed in to change notification settings

cmdf/extra-wordcount

Repository files navigation

Count words in a file, and list them in descending order in Windows Console.

  1. Download exe file.
  2. Copy to C:\Program_Files\Scripts.
  3. Add C:\Program_Files\Scripts to PATH environment variable.
ewordcount [-p <regex pattern>] <source file>
:: -p : specify regex pattern for items/words to be counted
::      (e.g. -p gl\w+, to look for gl calls in adb logs)
:: Get all words count
ewordcount ideas.txt
: (word counts are displayed)

:: Get all words count to file
ewordcount project.txt > project-count.log
: (word counts stored in "project-count.log")

:: Get Specific words count
ewordcount -p gl\w+ adb.log > adb-count.log
: (counts of word starting with "gl" is only stored)

cmdf