#!/bin/bash #clear the screen tput clear #position the cursor at 10th row & 12th column tput cup 10 12 echo "Enter your name: " tput cup 10 29 read name tput cup 13 12 echo Good evening! tput smso #enables boldface tput cup 13 27 echo $name tput rmso #disables boldface read name # added to hold the display till user hits Enter key