01 / 06
tr swaps one character for another
cut pulled out columns. tr (translate) swaps the characters themselves.
tr a-z A-ZThat means "lower case to capitals". It pairs them up one character at a time: a to A, b to B, and so on.
a-z is how you write "from a to z", the same idea as [a-z] in grep.
~ $ tr a-z A-Z < english.txtHELLO WORLDHELLO WORLD