Fosdccf.blog.chinaunix.net
sdccf
全部博文(19283)
Linux酷软(214)
tmp(0)
PostgreSQL(93)
Solaris(383)
AIX(173)
SCOUNIX(575)
DB2(1005)
Shell(386)
C/C++(1187)
MySQL(1750)
Sybase(465)
Oracle(3695)
Informix(548)
HP-UX(0)
IBM AIX(2)
Sun Solaris(0)
BSD(1)
Linux(8597)
SCO UNIX(23)
2011年(1)
2009年(125)
2008年(19094)
2007年(63)
clifford
linky521
曾德标
fengzhan
leon_yu
mcuflowe
yt200902
guanyuji
GY123456
snow888
carlos94
丸喵喵
sean229
cxunix
可怜的猪
cqxc413
xzzgege
wb123456
分类:
2008-04-18 22:42:50
#!/bin/ksh #scriptname:locktty #writed by :javalee #script start... reset;clear #清除屏幕 info="System will be locked!!! Press Waitting....." print "\n\n\n\n\n\n\n" for i in 9 8 7 6 5 4 3 2 1 0 do print -n " \a$info$i\r" sleep 1 done clear #加上这个倒记时的小东东,;) trapper () { #建立个函数 trap ' ' 2 3 20 #忽略CTRL+C CTRL+\ CTRL+Z信号 } while : #进入死循环 do trapper #调用函数 print "\n\n\n\n\n\n\n\n\t\t\tPlease enter unlock code:" stty -echo #屏蔽输入的字符 read input case $input in 123) print "\t\t Hello $USER,Today is $(date +%T)\n" stty echo break ;; #输入正确,挑出循环回到命令行 *) clear continue ;; #否则,继续循环 esac done #script over
上一篇:TCSH shell 编程入门(3)
下一篇:解压缩的脚本
登录 注册