#!/bin/bash
clear
currentDate=`date`
PS3='How can i help you Sir?: '
options=("Make Public own all the files" "Tell me the time" "Set shutdown" "Quit")
select opt in "${options[@]}"
do
case $opt in
"Make Public own all the files")
echo "Very well sir"
cd /home/bill/Public
sudo chown -R bill:sambashare *
sudo chmod -R a+rwx *
;;
"Tell me the time")
echo "it's " $currentDate
;;
"Set shutdown")
echo "Very well Sir"
shutdown -h 1:00
;;
"Quit")
break
;;
*) echo "invalid option $REPLY";;
esac
done