Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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'
share|improve this question
Try to add the tag for the OS you are using - this will help others to find your question and answer it. [tmux] tag has only 75 followers. – Artemix Oct 1 '12 at 6:41
You won't see the output of show info, since it will appear in mysess:mywin, not the window where you executed the send-keys command. – chepner Oct 2 '12 at 14:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.