I would like to capture input/output from pane/session file.
just like ^A+L
in minicom
I tried ^b+: capture-pane
in tmux. but nothing work.
Thanks
I would like to capture input/output from pane/session file.
just like ^A+L
in minicom
I tried ^b+: capture-pane
in tmux. but nothing work.
Thanks
You can pipe the current pane content to stdout
with tmux capture-pane -p -S -
and do whatever you want with a usual stdout
pipe, e.g. pipe it to a vim
buffer with tmux capture-pane -p -S - | vim -