bash_aliases: added tmux specific aliases, attach and detach.

Attach attaches you to tmux sesion and detach detaches you from tmux session.
This commit is contained in:
Mika Suomalainen 2011-09-04 16:17:54 +03:00
parent 2085c7053e
commit de3de3068b
1 changed files with 4 additions and 0 deletions

View File

@ -66,3 +66,7 @@ alias proxyc="proxychains "
# Downloads folder over SSH. Usage: rdownload <host>:<remotefolder> <local_destination> | TIP: use ~/ssh/config to configure hosts.
alias rdownload="rsync -avz "
# TMUX specific
alias attach="tmux attach"
alias detach="tmux detach"