在命令行中插入TAB键

参考man bash:

       quoted-insert (C-q, C-v)

              Add the next character typed to the line verbatim.  This is how to insert characters like C-q, for example.
       tab-insert (C-v TAB)
              Insert a tab character.

如上所述,可以使用Ctrl-v 再按TAB,也可以使用Ctrl-q再按TAB。

另外,TAB等同于Ctrl-I,即也可以使用Ctrl-v再按Ctrl-I,或是使用Ctrl-v再按Ctrl-I。

原文地址:https://www.cnblogs.com/fallenmoon/p/6811285.html