版本信息:
命令read -ei "hi"
将在gnome-terminal(bash)中显示结果hi
,但不会在emacs的shell模式(M-x shell)中显示结果hi
。
保罗的回答:
gnome-terminal(bash)中的 read -ei "hi"
和C-m
将显示:
[d@localhost Desktop]$ read -ei "hi"
hi
emacs的shell模式中的 read -ei "hi"
和C-m
将显示:
[d@localhost Desktop]$ read -ei "hi"
我期望在emacs的shell模式中看到:
[d@localhost Desktop]$ read -ei "hi"
hi
那么如何在emacs的shell模式下显示命令read
的结果?
答案 0 :(得分:0)
尝试添加回声:
read -ei "hi" && echo $REPLY