This command will with return a string in title format using English capitialization conventions.
string englishtitle "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 - englishtitle
Would return The People Were Freindly