Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site pyuxv.UUCP Path: utzoo!watmath!clyde!burl!ulysses!gamma!pyuxww!pyuxv!cim1 From: cim1@pyuxv.UUCP (G. Bogatko) Newsgroups: net.sources Subject: Lock your terminal for lunch Message-ID: <131@pyuxv.UUCP> Date: Fri, 6-Sep-85 15:05:45 EDT Article-I.D.: pyuxv.131 Posted: Fri Sep 6 15:05:45 1985 Date-Received: Sat, 7-Sep-85 07:33:25 EDT Organization: AGS Computers Lines: 28 # Munch, Munch #This is a great way to lock up your terminal without having to log off. trap 'echo "PISS OFF"' 1 2 3 6 15 clear echo " I won't work now. My massa has gon 'way. Don't even try. " stty -echo while true do read ans case $ans in # rewrite this line -- replace 'password' with YOUR password password) clear stty echo exit ;; *) echo "PISS OFF";; esac done #from Rob Fair and George Bogatko