Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Convert A String To Lower Case On The Command Line With tr

The [TODO: Code shorthand span ] command can convert a string to lowercase in bash, zsh, etc... For example :

bash
echo "Alfa Bravo" | tr '[:upper:]' '[:lower:]'
results start

Footnotes And References