This commit is contained in:
Joshua Wehner 2015-01-15 08:38:01 -06:00
Родитель 500b7e483e
Коммит 5beea2556d
1 изменённых файлов: 11 добавлений и 2 удалений

13
welcome
Просмотреть файл

@ -1,8 +1,17 @@
#!/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 Matthew McCullough, your instructor "
echo "I'm ${answer}, your instructor "
echo '-------------------------------------------------'
echo