training-utils/welcome

18 строки
328 B
Bash
Executable File

#!/bin/sh
answer=$@
#Ask for instructor unless specified
if [ -z "$1" ];
then
printf "Instructor name? "
read answer
fi
clear
echo '-------------------------------------------------'
echo 'Welcome to class on:' `date`
echo "I'm ${answer}, your instructor "
echo '-------------------------------------------------'
echo