Word Frequency
Count word frequency in text
AnalyzeHow it works
1. lowercase Convert text to lowercase 2. split Split on delimiter and rejoin with another 3. sort-lines Sort lines alphabetically 4. count Count occurrences of each unique line
$ lowercase | split --on= | sort-lines | count Examples
Analyze word repetition in a writing sample
Usage
"the quick brown fox jumps over the lazy dog the fox the dog" | lowercase | split --on= | sort-lines | count Count issue types from a sprint tracker export
Usage
"bug fix bug feature bug enhancement feature fix bug feature" | lowercase | split --on= | sort-lines | count Tally framework mentions from a survey response
Usage
"react vue react angular react vue svelte react vue angular" | lowercase | split --on= | sort-lines | count