The following 41 words could not be found in the dictionary of 615 words (including 615 LocalSpellingWords) and are highlighted below:

and   carriage   cat   characters   command   Count   count   diagnose   especially   file   frequency   Frequency   if   If   in   infile   kinds   lines   new   numbers   od   of   piping   re   returns   some   sort   source   stream   the   their   through   to   try   trying   uniq   value   versus   want   what   you  

Clear message

If you're trying to diagnose what kinds of characters are in a file, especially carriage returns versus new lines, try piping it through the od command:

cat infile | od -c

Count Frequency of a value

if you have a stream of numbers and you want to count their frequency:

some source of numbers | sort | uniq -c

LinuxTips (last edited 2016-03-25 21:27:15 by ChrisSeidel)