在使用 `autoexpect` 自动生成的 bash `expect` 脚本中,有一个 `^G` - 它代表什么?

在使用 `autoexpect` 自动生成的 bash `expect` 脚本中,有一个 `^G` - 它代表什么?

在 bashexpect脚本 autogen'd with中autoexpect,我在行完成不提供完成也不更改输入行的情况下使用 [TAB] 调用行完成。脚本摘录如下所示:

send -- "dummyprog 1[TAB]"
expect -exact "^G"

为了可见性,我用字符替换了文字选项卡[TAB]

, 是字面意思^G。我^G在 ubuntu 手册页上看不到任何关于expect或者autoexpect

它是终端控制字符吗?它是程序的产物吗expect?它是什么?

相关内容