capint
10/24/2015 - 9:17 PM

Bash >> Translate

Bash >> Translate

### Copies the given input to produced the output

$ echo 'linux' | tr "[:lower:]" "[:upper:]"
$ echo 'linux' | tr "a-z" "A-Z"