Can I use awk to convert all the lower-case letters into upper-case? April 22, 2023 by Tarik Try this: awk '{ print toupper($0) }' <<< "your string" Using a file: awk '{ print toupper($0) }' yourfile.txt