bash lowercase

C++
Just use tr command to transform lowercase letters into uppercase as:
tr a-z A-Z < file.txt	#transforms letters into uppercase in a file
echo 'HELLO' | tr A-Z a-z	#Outputs: 'hello'# In Bash 4.0
a=DHCP
echo "${a,,}"
# Output:
dhcp
Source

Also in C++: