toupper函数
1.1、toupper函数的作用

toupper函数用于将英语字符转换为大写。

1.2、toupper函数的原型
toupper(STRING)

示例:

echo "I Love you." | awk '{print(toupper($0))}'