This command will with return a upper case version of string.
string toupper "the people were freindly"
Would return THE PEOPLE WERE FREINDLY
NOTE: To read content from standard input we use the -i -
option.
echo "the people were freindly" | string -i - toupper
Would return THE PEOPLE WERE FREINDLY