Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 149 Bytes

File metadata and controls

5 lines (4 loc) · 149 Bytes

I. Parse Text File and List all Abbreviations with Number of Occurence

cat *.txt | grep -wo "[A-Z]\+\{2,10\}" | sort | uniq -c | sort -gr