I am using tmux to run a server console. To check whether the console is answering, I would like to use send-keys to run a command on the console:
tmux send-keys -t mysess:mywin "show info" Enter
(Actually, I’m currently logging the full console output to a file and reading the last line, but I hope that a better solution exists.)
tmux pipe-pane -o -t mysess:mywin 'cat >> mysess-mywin.log'
show info, since it will appear inmysess:mywin, not the window where you executed thesend-keyscommand. – chepner Oct 2 '12 at 14:37