https://github.com/nodef/extra-wordcount.cmd
Count words in a file, and list them in descending order in Windows Console.
https://github.com/nodef/extra-wordcount.cmd
console count descending extra file list merferry order program windows word
Last synced: about 2 months ago
JSON representation
Count words in a file, and list them in descending order in Windows Console.
- Host: GitHub
- URL: https://github.com/nodef/extra-wordcount.cmd
- Owner: nodef
- Created: 2017-10-16T18:30:25.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-10T19:59:04.000Z (about 1 year ago)
- Last Synced: 2025-08-11T01:09:54.064Z (10 months ago)
- Topics: console, count, descending, extra, file, list, merferry, order, program, windows, word
- Language: C#
- Homepage: https://cmdf.github.io/extra-wordcount/
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Count words in a file, and list them in descending order in Windows Console.
> 1. Download [exe file](https://github.com/cmdf/extra-wordcount/releases/download/1.0.0/ewordcount.exe).
> 2. Copy to `C:\Program_Files\Scripts`.
> 3. Add `C:\Program_Files\Scripts` to `PATH` environment variable.
```batch
ewordcount [-p ]
:: -p : specify regex pattern for items/words to be counted
:: (e.g. -p gl\w+, to look for gl calls in adb logs)
```
```batch
:: 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)
```
[](https://cmdf.github.io)
