tolower函数
1.1、tolower函数的作用

tolower函数用于将英语字符转换为小写。

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

示例:

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