#!/bin/bash

legend="john nash"
actor="LEAM NELSON"

echo ${legend^^}

# JOHN NASH

echo ${actor,,}

# leam nelson

echo ${legend^}

# John nash

echo ${actor,}

# lEAM NELSON

echo ${legend^^[jn]}

#  JohN Nash