Learn Docker With My Newest Course

Dive into Docker takes you from "What is Docker?" to confidently applying Docker to your own projects. It's packed with best practices and examples. Start Learning Docker →

Capitalize the First Letter in a String or Make It Lowercase in Bash

capitalize-the-first-letter-in-a-string-or-make-it-lowercase-in-bash.jpg

This can be handy for outputting labels in a human readable way.

Quick Jump:

This requires Bash 4+ or above so if you’re on macOS you’ll want to brew install bash. This takes advantage of parameter expansion.

If you plan to follow along in zsh, you’ll want to run bash first.

Capitalize the first character:
greeting="hello world"
echo "${greeting^}"

Hello world
Lowercase the first character:
greeting="Hello world"
echo "${greeting,}"

hello world

In both cases it modifies the first character. For example heLLo with ^ will return HeLLo.

You can also use ^^ or ,, to uppercase or lowercase all characters in a string, in the above examples that would be HELLO WORLD or hello world.

The video below demos the above.

# Demo Video

Timestamps

  • 0:35 – Capitalize first character
  • 0:59 – Lowercase first character
  • 1:22 – Uppercase or lowercase all characters in a string

When was the last time you did this? Let me know below.

Never Miss a Tip, Trick or Tutorial

Like you, I'm super protective of my inbox, so don't worry about getting spammed. You can expect a few emails per year (at most), and you can 1-click unsubscribe at any time. See what else you'll get too.



Comments