Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 419 Bytes

File metadata and controls

24 lines (14 loc) · 419 Bytes

string toupper [STRING]

This command will with return a upper case version of string.

Typical command line

    string toupper "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 - toupper 

Would return THE PEOPLE WERE FREINDLY