Free Web Hosting | Web Hosting | Free Web Space | Web Hosting

Home

#***************************************************

# A screen saver with password lock.

# Checked in DRS6000 Sparc Unix V. Release 4.0

# Ahthor: Pradeep G. E-Mail: pradeep@ipath.net.in.

# Home Page: www.ipath.net.in/pradeep/

#****************************************************

trap " " 0 1 2 3 4 5 6 7 8

banner terminal

banner reserved

read key

echo $key

while true

do

echo "Enter screensaver Password:"

stty -echo

read pw

stty sane

if [ "$pw" = pbkr ]

then

cls

banner Welcome

banner Pratheesh

stty echoe

break

else

cls

banner terminal

banner reserved

echo ' '

echo "illegal immigrant...bailout"

fi

done

Home