#!/bin/bash # user_age # Purpose: Prompts user for their age (in years) # and then tells user how old they are clear # Clears the screen # Prompt user for age printf "Please $USER , enter you age (in years): " read userAge # Display user's age printf "\nYou are $userAge year(s) old\n\n" # End of shell script