This command will with return a lower case version of string.
string tolower "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 - tolower
Would return the people were freindly