Skip to content

Latest commit

 

History

History

upper

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Lower

upper is a simple utility covert all arguments to uppercase. While there are many ways to accomplish this in the shell, this is the simplest.

    $ upper "hello world"
    HELLO WORLD

    $ echo "hello world" | upper
    HELLO WORLD
    
    # old approach
    $ echo "hello world" | tr '[:lower:]' '[:upper:]'
    HELLO WORLD