我想要类似getche()C的选项。如何仅从命令行读取单个字符输入?
getche()
使用read命令可以做到吗?
read
在ksh中,您基本上可以执行以下操作:
stty raw REPLY=$(dd bs=1 count=1 2> /dev/null) stty -raw