I have a file mixed with lower-case letters and upper-case letters, can I use awk to convert all the letters in that file into upper-case?
awk
Something like
< yourMIXEDCASEfile.txt awk '{print toupper($0)}' > yourUPPERCASEfile.txt