You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Read from the file words.txt and output the word frequency list to stdout.
sed 's/ /\n/g' words.txt | sort | grep -P "\w+"| uniq -c | sort -r | awk '{print $2, $1}'