Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 470 Bytes

englishtitle.md

File metadata and controls

24 lines (14 loc) · 470 Bytes

string englishtitle [STRING]

This command will with return a string in title format using English capitialization conventions.

Typical command line

    string englishtitle "THE PEOPLE WERE FREINDLY"

Would return The People Were Freindly

Piping content

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