Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 465 Bytes

File metadata and controls

24 lines (14 loc) · 465 Bytes

string totitle [STRING]

This command will with return a title case version of string. This normally means it will be in upper case.

Typical command line

    string totitle "the people were friendly"

Would return THE PEOPLE WERE FRIENDLY

Piping content

NOTE: To read content from standard input we use the -i - option.

    echo "the people were friendly" | string -i - totitle 

Would return THE PEOPLE WERE FRIENDLY