Clean & Count Text
Line and word counts for cleaned text
AnalyzeHow it works
1. trim-lines Trim whitespace from each line 2. squeeze Collapse extra whitespace and blank lines 3. wc Word and character counter with line count
$ trim-lines | squeeze | wc Examples
Get word and line counts for cleaned essay text
Usage
" The quick brown fox
jumps over the lazy dog.
Pa..." | trim-lines | squeeze | wc Count words in a blog draft after removing extra whitespace
Usage
" Title: My Blog Post
First paragraph here.
Secon..." | trim-lines | squeeze | wc Count cleaned todo items for daily planning
Usage
" TODO: Buy groceries
TODO: Call dentist
TODO: Fi..." | trim-lines | squeeze | wc