An open API service indexing awesome lists of open source software.

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.

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)
```

[![cmdf](https://i.imgur.com/ApzHpHZ.jpg)](https://cmdf.github.io)
![](https://ga-beacon.deno.dev/G-RC63DPBH3P:SH3Eq-NoQ9mwgYeHWxu7cw/github.com/nodef/extra-wordcount.cmd)