HackerRank - A Personalized Echo

April - 25/2025

Problem:

Write a Bash script which accepts name as input and displays the greeting "Welcome (name)".

# Input

# Output

# Solution

            
    read name
    echo "Welcome $name"
        

Post: