shell promt user input

Shell
#!/bin/bash

read -p "Enter Your Name: "  username
echo "Welcome $username!"
Source

Also in Shell: