"Taking a LiveFire Labs' course is an excellent way to learn
Linux/Unix. The lessons are well thought out, the material is
explained thoroughly, and you get to perform exercises on a real
Linux/Unix box. It was money well spent."
LiveFire Labs' UNIX and Linux Operating System Fundamentals
course was very enjoyable. Although I regularly used UNIX systems
for 16 years, I haven't done so since 2000. This course was a
great refresher. The exercises were fun and helped me gain a real
feel for working with UNIX/Linux OS. Thanks very much!"
select varname in opt1 opt2...optN
do
case $varname in
opt1) command1;;
opt2) command2;;
optN) commandN;;
esac
done
PS3='Select an option and press Enter: '
select i in Date Host Users Quit
do
case $i in
Date) date;;
Host) hostname;;
Users) who;;
Quit) break;;
esac
done
1) Date
2) Host
3) Users
4) Quit
Select an option and press Enter:
1) Date
2) Host
3) Users
4) Quit
Select an option and press Enter: 1
Mon May 5 13:08:06 CDT 2012
Select an option and press Enter:
Select an option and press Enter:
1) Date
2) Host
3) Users
4) Quit
Select an option and press Enter:
1) Date
2) Host
3) Users
4) Quit
#?