Add a pipeline version written in Bourne shell

This commit is contained in:
Bruce Adams
2013-09-23 19:48:18 -04:00
parent 26aecfd4a3
commit 03e41234c3

View File

@@ -0,0 +1,7 @@
#!/bin/sh
grep -o "[A-Za-z][A-Za-z][A-Za-z]*" $1 \
| tr '[:upper:]' '[:lower:]' \
| grep -Ev "^($(sed -e 's/,/|/g' ../stop_words.txt))$" \
| sort | uniq -c | sort -rn | head -25 \
| sed -e 's/^ *\([0-9]*\) *\([a-z]*\)/\2 - \1/'