WMC.RGS
6/20/2019 - 9:48 AM

Convert Bash variable to upper case

A="Hello World"
# convert string to upper case
B=${A^^}

echo "$A"
echo "$B"