全部博文(776)
分类:
2010-02-24 22:17:00
一个经典的小难题,HERE you are: 把下面这个函数如法应用到你的程序中去吧。 #!/bin/sh get_char() { SAVEDSTTY=`stty -g` stty -echo stty raw dd if=/dev/tty bs=1 count=1 2> /dev/null stty -raw stty echo stty $SAVEDSTTY } echo "Press any key to continue..." char=`get_char` |
michaelds 回复于:2002-03-19 13:45:05 |
忘了说了,如果你的机器上不认stty raw那么把函数中两处出现的raw换成cbreak。 |