如何在没有鼠标的情况下使用键盘在BASH终端中选择文本?


Answers:


6

也许这可行(来源

您可以使用GNU screen的复制和粘贴命令。

快速教程:

  1. 打开屏幕:屏幕(或在这里屏幕myprog我的参数)
  2. 运行程序,生成要复制的输出
  3. 进入复印模式:^ A [
  4. 将光标移到起点
  5. 点击进入
  6. 将光标移到终点
  7. 点击进入
  8. 粘贴:^ A]

屏幕功能远不止于此(我使用它来制表几个虚拟终端,而无需特殊的终端仿真器,并且这样,当X崩溃或发生某些事情时,我就不会失去会话)。要退出屏幕,只需结束您的Shell会话,或键入^ A ^。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.