Add script for generating frequency of a file

This commit is contained in:
Ngô Ngọc Đức Huy 2021-02-06 09:10:40 +07:00
parent 3848a533b9
commit e111ecb1c2
Signed by: huyngo
GPG Key ID: 904AF1C7CDF695C3
1 changed files with 1 additions and 0 deletions

1
wordfreq.sh Executable file
View File

@ -0,0 +1 @@
tr -sc 'A-Za-z' '\n' < $1 | sort | uniq -c