解决方法
我以为dd也许可以做到这一点,所以我尝试了它并没有得到任何结果.但是,Google为我找到了
this,我在这里修改了它:
readOne () { local oldstty oldstty=$(stty -g) stty -icanon -echo min 1 time 0 dd bs=1 count=1 2>/dev/null stty "$oldstty" }
在脚本开头定义此函数一次,然后您可以像这样使用它:
char=$(readOne) # get the character echo $char # print the character (or you can do something else with it)