#!/bin/bash
# example01

# Echo exits with a newline so lets drop down 2 lines
echo
echo

# First get some names
echo "Enter your first name and surname."


# Secondly create two variables from the names entered
first_name=$1
second_name=$2

echo

# Let's echo some time and date info
echo "It is now `date`"
echo

# Now let's echo the other variables to standard output
echo "My name is $first_name $second_name"
echo

# end of script


