Resources

Linux binaries for Windows

awk, cut, wget,grep, etc binaries for windows

Tmux basic tricks

#new session
tmux new -s nmap

#attach created session
tmux a -t nmap

#list sessions
tmux ls

#detach
CTRL+B => d

#kill session
tmux kill-session -t myname

#----WINDOWS------------

c           new window
,           name window
w           list windows
f           find window
&           kill window
.           move window - prompted for a new number
:movew<CR>  move window to the next unused number

#-----PANES---------------------
%  horizontal split
"  vertical split

o  swap panes
q  show pane numbers
x  kill pane
⍽  space - toggle between layouts

-- MOUSE----------
CTRL+B => :set -g mouse on

or

:setw mode-keys emacs
navigate: CTRL+B => [
exit: q

Last updated