GNU Screen中是否有命令将标准输出定向到复制缓冲区
我一直在用文件做很多工作,很高兴将我想要的文件名复制并传递给命令
例如
ls | grep proc
$ls | grep cal calendar.inc-gen.PHP // enter copy mode $^a y // backward search for gen_chg ? cal // start region SPC //goto to end of file by forward search PHP PHP // done ENT // type command line $git rm ^p // creates $git rm calendar.inc-gen.PHP
我知道使用bash脚本有更简单的方法可以做到这一点,但我经常发现自己需要终端屏幕上的专门信息,只需输入就可以了.
ls | grep cal > To_GNU_SREEN_COPY_:) or something
丹尼斯的解决方案起作用
您可能需要在.screenrc中设置缓冲区文件
bufferfile / tmp / screen-exchange
解决方法
这是一种方式:
echo -n cal* > /tmp/screen-exchange screen -X readbuf # or press Ctrl-a < git rm ^a] # type "git rm" then press Ctrl-a ]