How can I write all the scrollback in a tmux session to a file?
capture-pane can grab the current screen, but not the entire scrollback.
For those looking for a simple answer:
capture-pane -S -3000 + Return. (Replace -3000 with however many lines you'd like to save, or with - for all lines.) This copies those lines into a buffer.save-buffer filename.txt + return. (by default it'll save the file in ~/)(By default Prefix is Ctrl+B.)
save-buffer filename.txt seems to save the file in /, not in pwd (current directory). Instead, I provided an absolute file path and it worked like a charm
tmux binary. So, anytime an answerer gives you a hint like capture-pane, search man tmux for it. Then you will find that -p prints to stdout. Then you can deduce that the simplest solution is tmux capture-pane -pS -1000000 > transcript.txt. I've taught you to fish. Use this for all things tmux.
save-buffer filename.txt saved to home directory.
With tmux 1.5, the capture-pane command accepts -S and -E to specify the start and end lines of the capture; negative values can be used to specify lines from the history. Once you have the data in a buffer, you can save it with save-buffer.
Here is an example binding (suitable for .tmux.conf) that wraps it all up with a prompt for the filename:
bind-key P command-prompt -p 'save history to filename:' -I '~/tmux.history' 'capture-pane -S -32768 ; save-buffer %1 ; delete-buffer'
This captures (up to) 32768 lines of history plus the currently displayed lines. Starting with tmux 1.6, you can use numbers down to INT_MIN if your pane has a history that is deeper than 32Ki lines (usually up to 2Gi lines). Starting in tmux 2.0, you can use capture-pane -S - to mean “start at the beginning of history” (i.e. no large, hard-coded negative number).
Note: The number of lines in the saved file will not always be equal to the pane’s history limit plus its height.
When a pane’s history buffer is full, tmux discards the oldest 10% of the lines instead of discarding just one line. This means a pane’s effective history depth will sometimes be as low as 90% of its configured limit.
-S to capture-pane (it appears to be 1.3-2, although that's from dpkg, as I can't figure out how to get tmux to show me a version number…)
tmux server-info | head -1 to see your version. tmux -V works in tmux* 1.4 and later.
[PrefixKey] : to get to the tmux command line, and then paste the whole line, then you just do a [Prefix] P it is capital P and you are good to go.
-e to capture-pane (i.e., capture-pane -e) to include colors in Tmux 1.8 and up.
If you want something you can run from the command line (instead of using your tmux prefix keys), try running:
tmux capture-pane -pS -
If you run it and it seems to not do anything, that's because it's outputting exactly what was just on your screen, so it looks the same.
Of course, you can also pipe it into a file:
tmux capture-pane -pS - > file.out
See the tmux man page and search for capture-pane for more things you can do (like capture escape sequences in case you want to preserve color, or specify whether you want multiple visual lines to be joined when they don't contain a new line)
-p argument outputs to stdout instead of a tmux buffer.
tmux capture-pane -t {top} -pS -1000 > ~/tmp.out
-S- to capture all the available history in the pain: tmux capture-pane -p -S- > /tmp/output.txt. First-hand source (I think): man7.org/linux/man-pages/man1/tmux.1.html#COMMANDS, "-S and -E specify the starting and ending line numbers [...] ‘-’ to -S is the start of the history"
-J so that wordwrapping in your buffer is removed when dumped to a file, caveat is training spaces, so sed can help. Full cmd: tmux capture-pane -p -J -S- | sed -E 's# +$##g' > /tmp/output.txt
-J adds trailing spaces? That is really a shame, I wish I could avoid seding all of them out in case there are actual trailing spaces in the output.
This depends on the value of history-limit that you have set in your .tmux.conf - the default is 2000; if you wish to capture more, you will need to explicitly set the number of lines.
To capture the entire scrollback, enter copy mode, select the entire scrollback, and yank it into the buffer, then paste it into your file.
How you accomplish this will depend on the mode-keys option you prefer, vi or emacs. man tmux has a helpful table describing the respective keys.
I have the following in my .tmux.conf to simplify this:
unbind [
bind Escape copy-mode
unbind p
bind p paste-buffer
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
The process for capturing the full scrollback is then:
PrefixEsc : to enter copy mode
v : to begin visual selection (assuming you are already at the bottom of the screen)
gg : to capture everything in the scrollback
y : to yank it into the buffer
Prefixc : open another tmux window
vim scrollback.txt
i : enter insert mode in vim
Prefixp : paste into file
There is also an answer here describing how to copy the buffer to a temporary file using xsel that might be useful.
:set paste in vim, vim will ignore adding automatic indentations or any insert-based keybindings.
.tmux.conf...
cat << EOF >> file, and then pasting the tmux buffer, and then terminating it with a line containing only EOF. Worked like a charm.
I had standard key bindings which appeared to be a bit different than in @jasonwryan's answer and didn't change anything in config.
Below is recipe that worked for me. Maybe you will find it useful if you don't want to make any changes in tmux config and just want to quickly copy some of the scrollback.
Prefix == Ctrl+b in my tmux (tmux 1.6, debian 7).
Here's a tmux plugin that enables this:
https://github.com/tmux-plugins/tmux-logging
After you install it, save the entire scrollback with prefix + alt-shift-p.
Write all the scrollback history from a tmux pane to a file:
tmux capture-pane -pS - > file
where ‘-’ to -S is the start of the history, as the manual says.
For all panes in the session, you can loop through all the panes with tmux list-panes -s ....
To specify a target pane:
tmux capture-pane -t :WINDOW.PANE -pS - > file
Use -t to specify target pane. The format is SESSION:WINDOW.PANE. For example, -t :1.2 means current tmux session, window 1, pane 2.
To identify the pane, use prefix + q, which prints the ID for each pane for the current window.
How can I write all the scrollback in a tmux session to a file?
I use this in my ~/.tmux.conf, and now when I exit my running shell, pane output is saved to unique log file:
set -g remain-on-exit
set-hook pane-died 'capture-pane -S - -E - ; save-buffer "$HOME/logs/tmux/tmux-saved.#{host_short}-#{session_id}:#{window_id}:#{pane_id}-#{pane_pid}-#{client_activity}.log"; delete-buffer; kill-pane'
This is actually very easy.
Enter the command mode by press prefix key then :.
Then do capture-pane -S -<line number you want to dump>
Then save-buffer <filepath>
That file contains all the scrollback output. You should delete the buffer afterwards for safety reason.
Dump to a file and automatically open the file in vim
This is sweet:
bind-key v 'capture-pane' \; \
capture-pane -S - \; \
save-buffer /tmp/tmux \; \
delete-buffer \; \
send-keys Escape 'ddivim /tmp/tmux' Enter
This solution supposes that your shell is in vi mode, so that:
dd clears any existing commandi goes into insert modevim /tmp/tmuxTested in tmux 3.0.
Newline insertion on terminal wrap issue
One problem with this is that it inserts literal newlines on any line that would have been broken up due to terminal wrapping if output lines are longer than you terminal width. And we usually don't want that.
I tried to fix this with -J as mentioned here but that caused another problem, it started adding trailing space characters to each line.
Eric Cousineau proposes a workaround for that with sed, but I'd really rather avoid this as it would remove actual newlines emitted by the commands, which I want to be there.
Kind of the inverse of this was asked at: https://github.com/tmux/tmux/issues/422 Add capture-pane option to only preserve trailing spaces. Maybe the space thins is a fundamental terminal limitation?
/tmp looks like a bad idea since others get the permission to read it! Additionally, in case one is going to use this just to navigate the scrollback with full Vim powers and don't actually want to keep it in a file polluting the filesystem, then one could immediately delete the file after Vim gets its contents in a buffer. E.g. this is what I do: bind v capture-pane -S - \; save-buffer ~/.x \; delete-buffer \; new-window 'vim "set buftype=nofile" +"!rm ~/.x" ~/.x +'.
$ divim /tmp/tmux -bash: divim: command not found. looks like sending keys ddi has issues. tmux version. 3.3a
set-window-option -g mode-keys vi. guess that what you mean by vim mode
.inputrc: unix.stackexchange.com/questions/4870/…
I tried the answers from here quite extensively, and ran into a repeated problem that not all scroll back was recorded due to its size, wether it just became too big or I forgot to increase the limit on a new machine. I ended up saving the log to a file on the fly:
tmux pipe-pane -o 'cat >>~/tmux.log'
and then
tmux pipe-pane
to stop logging. That circumvents all limits and also works even if machine crashes and you are unable to save scroll back manually.
If you want to lower HDD use you can use "buffer" utility. This command will write each time log increases by 16kb:
tmux pipe-pane -o 'buffer -s 1k -m 16k > ~/tmux.log'