/ Published in: Bash
Find & count how many words in some file
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/bin/sh tr -sc 'A-Za-z' '\012' < filename.file | sort | uniq -c