Uppercase and lowercase conversion
📖 Scenario: You work in a small office where you often receive text data in mixed cases. To keep things neat, you want to convert text to all uppercase or all lowercase.
🎯 Goal: Build a simple Bash script that converts a given string to uppercase and lowercase.
📋 What You'll Learn
Create a variable with a specific string
Create a variable to hold the uppercase version
Create a variable to hold the lowercase version
Print both uppercase and lowercase results
💡 Why This Matters
🌍 Real World
Converting text case is useful for formatting data, preparing text for case-insensitive comparisons, or cleaning up user input.
💼 Career
Many automation scripts require text normalization. Knowing how to convert case in Bash helps in writing robust shell scripts for system administration and data processing.
Progress0 / 4 steps