tmux

作者: 再见田园犬 | 来源:发表于2015-10-18 11:24 被阅读58次

Chapter 1

create named sessions

$tmux new-session -s xxx
$tmux new -s xxx

detach and attach sessions

CTRL+b d detaching from the sessions

$tmux list-sessions
$tmux ls
$tmux attach -t xxx

kill sessions

$tmux kill-session -t xxx

create a named session

$tmux new -s xxx -n xxx

create new window

PREFIX c

renaming a window

PREFIX ,

go to the next window

PREFIX n

go to the previous window

PREFIX p

go to the specific window

PREFIX number

find a window by name

PREFIX f name

display all the window

PREFIX w

kill off the window

PREFIX &

split window

PREFIX %
PREFIX "

navigate through panes

PREFIX o
PREFIX Up Down, Left, Right

change pane layout

PREFIX space even-horizontal even-vertical main-horizontal main-vertical tiled

close pane

PREFIX x

command mode

PREFIX :
new-window -n xxx
new-window  "top" //press `q` will also exit the window,you can use configuration settings to get around this

Chapter2

相关文章

  • tmux

    1 新建 tmux new -s ccc 2查看tmux窗口tmux ls 3进入一个tmux窗口tmux a -...

  • [Tmux]常用命令

    tmux常用命令 tmux:运行tmux并开启一个新的会话。 tmux ls:显示所有会话。 tmux new -...

  • Tmux 使用笔记

    Tmux 速成教程:技巧和调整Tmux 入门介绍多终端管理器TMUX使用详解 查看tmux版本 tmux -V 会...

  • 命令行神器 Tmux

    Tmux Link GitHub[https://github.com/tmux/tmux/wiki/Gettin...

  • Tmux——打造完美的Linux终端

    安装tmux sudo yum install tmux 运行tmux并开启一个新的会话 tmux 显示所有会话 ...

  • tmux使用介绍

    tmux简介 tmux,升级版本的screen,可以进行屏幕切割,操作更加简单便捷。 tmux模块 tmux使用C...

  • ❖ Tmux Like a Boss

    进阶参考:10 Killer Tmux Tips Tmux会话自动保存 Tmux会话是整个tmux中最最最重要的东...

  • ubuntu tmux 快捷键

    session 新建tmux会话tmux new -s [name of session] 在已有tmux会话基础...

  • Linux 安装配置 tmux

    安装 tmux sudo apt install tmux 安装 tmux 主题 cd ~git clone ht...

  • Mac OS 打造完美终端

    先看效果图: 安装 homebrew 安装 tmux 配置 tmux (vim ~/.tmux.conf) 配置 ...

网友评论

      本文标题:tmux

      本文链接:https://www.haomeiwen.com/subject/jponcttx.html