从上一个命令的输出中复制文本(仅使用键盘,而不是鼠标)
Posted
技术标签:
【中文标题】从上一个命令的输出中复制文本(仅使用键盘,而不是鼠标)【英文标题】:copy text from the output of a previous command (using only keyboard, not mouse) 【发布时间】:2022-01-18 10:25:04 【问题描述】:如何在 bash 中使用 only 键盘(不是鼠标)从上一个命令的输出中复制文本
$ ./my_lovely_program input.txt
eggs
sugar
flour
$ <----- any way to move "up" and yank / copy the word "sugar" ?
【问题讨论】:
【参考方案1】:一旦打印了一些东西,它就消失了,bash 不再知道它的任何内容。 bash 可以拦截您的击键,但不会将之前的输出存储在任何地方。你能做的最好的就是使用tee
:
./my_lovely_program input.txt | tee some_file
some_file
将包含程序的标准输出。
【讨论】:
以上是关于从上一个命令的输出中复制文本(仅使用键盘,而不是鼠标)的主要内容,如果未能解决你的问题,请参考以下文章
复制所有活动而不是 [仅复选框和文本](待办事项列表 android 应用程序)