how to use grep, find , word count to find the count of unique words in a file without using uniq or sort
grep -oE ‘w+’ filename.txt with this command am able to get the list of words in the file but unable get the unique ones.
New contributor
Varsha C B is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.