I'm tryed with:
$ echo 'Ciência' | tr 'a-z' 'A-Z'
CIêNCIA
But the 'ê' character does not change, obviously because it is accentuated. Then I tried with POSIX classes:
echo "Ciência" | tr '[:lower:]' '[:upper:]'
CIêNCIA
But the 'ê' continue in lower case.
Could someone help me?