#!/bin/sh
#
# script to say hello
#

	printf "What is your name ? "
	read name
	echo "hello, $name, nice to meet you!"
