Fork me on GitHub

Other articles


  1. Tmux Cheat Sheet

    Published: Tue 02 May 2017
    Updated: Wed 17 January 2018
    By Yunseop Song

    In tmux.

    Common Command

    start

    tmux
    

    start with session name

    tmux new -s <name>
    

    attach

    tmux a # 
    

    attach by name

    tmux a -t <name>
    

    show sessions list

    tmux ls
    

    kill session

    tmux kill-session -t <name>
    

    kill all the tmux sessions

    tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length …
    read more

    There are comments.

links

social