# - - - - - - - - - - -
#	Give a salutation
# - - - - - - - - - - -
function _exit()
{
	echo -e "peace!"
}
trap _exit EXIT
# - - - - - - - - - - - - - - - - - - - -
#	Clear the screen for security's sake
# - - - - - - - - - - - - - - - - - - - -
clear
