by @AV4TAr.
Brought you by @AV4TAr
"AHH, connection dropped during migration..." - No more :)
~ screen
~ screen -ls
~ screen -r [session-number]
available for Linux / Mac / Cygwin
Ctrl-a
Ctrl-a c
Ctrl-a "
Ctrl-a d
quick reference http://bit.ly/screen-quick-reference
~ tmux
~ tmux list-sessions
~ tmux list-clients
~ tmux attach-session [-t session-number]
available for Linux / Mac / Cygwin
Ctrl-b
Ctrl-b c
Ctrl-b "
Ctrl-b %
Ctrl-b arrows
Ctrl-b d
Ctrl-b ?
teamocil
simple tool used to automatically create sessions, windows and panes in tmux with YAML files.
http://teamocil.com/
~ gem install teamocil
~ mkdir ~/.teamocil
~ teamocil --edit sample
~ tmux
~ teamocil sample
~/.teamocil/four.yml
windows:
- name: "four-panes"
root: "~/Code/sample/www"
layout: tiled
panes:
- cmd: "top"
- cmd: "tail -f /var/log/apache2/error.log"
- cmd: "tail -f /var/log/mail.log"
- cmd: "ping google.com"