我正在编写用于自动执行“ make menuconfig”的脚本。 我想使用向下箭头键选择对话框中的某些项目。 我在终端中的向下箭头键是'^ [[B'。 因此,我在期望脚本中使用了发送“ \ 033 [B”,发送“ \ x1b \ x5b \ x42”,发送“ \ 1B [B”等), 但没有一个工作。
#!usr/bin/expect
spawn make menuconfig
send "v" #select item hot key
send "y" #enter this item
send "\033\[B" #I expect the down arrow key will execute here.
interact
exit 0
我该怎么办? 还是这不能正常工作? 还有其他方法可以自动执行此操作吗?