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
If Perl is an option:
perl -ne 'print uc()' file
-n
-e
uc()
To print all lowercase:
perl -ne 'print lc()' file