我有一个包含小写字母和大写字母的文件,我可以awk用来将该文件中的所有字母都转换为大写吗?
awk
尝试这个:
awk '{ print toupper($0) }' <<< "your string"
使用文件:
awk '{ print toupper($0) }' yourfile.txt