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
You can use awk, but tr is the better tool:
tr
tr a-z A-Z < input
or
tr [:lower:] [:upper:] < input