Bash - Convert to Uppercase / Lowercase October 28, 2019 y="HELLO" val=$(echo "$y" | tr '[:upper:]' '[:lower:]') string="$val world" Read more