Skip to content

Tag: tmux

Running the same command on several ssh servers using tmux

Is is it possible to type a command once and run it over several servers connected via ssh using tmux? Answer What you are looking for might be “synchronize-panes”. With this option turned on, every keystroke is deliver to every pane of current window. Therefore, you can achieve your goal by: Spli…

Move window between tmux clients

I’m just learning tmux and I have no experience with screen. I’m wondering if I can move a window in one tmux client to another tmux client. I want to move my IRC client to a new window on my screen. Answer Yes, you can use the move-window command: This is similar to link-window, except the window…