博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Tmux常用快捷键及命令
阅读量:5158 次
发布时间:2019-06-13

本文共 1271 字,大约阅读时间需要 4 分钟。

Exported from workflowy!
  • tmux
    • session
      • start/create session
        - tmux
        - tmux new-session -s portage
      • listing sessions
        - tmux ls
        - tmux list-sessions
        - prefix s  
      • rename session
        - rename-session -t old new
        - prefix $  
      • detach client/session
        - prefix d  
      • resuming session
        - tmux a -t portage
        - tmux attach -t portage
    • window
      • create window
        - prefix c
      • switch window
        - prefix n = Change to the next window.
        - prefix p = Change to the previous window.
        - prefix l = Move to the previously selected window.
        - prefix 0-9 = Select windows 0 to 9.
        - prefix ' = Prompt for a window index to select. Then enter a number or title to switch to that window.
      • listing windows
        - prefix w
      • rename window
        - prefix ,
      • close window
        - prefix &
    • pane
      • split pane
        - prefix " = Split the current pane into two, top and bottom.
        - prefix% = Split the current pane into two, left and right.
      • switch pane
        - prefix o = Select the next pane in the current window.
        - prefix ; = Move to the previously active pane.
        - prefix { = Swap the current pane with the previous pane.
        - prefix } = Swap the current pane with the next pane.
      • arrange pane
        - prefix Alt+1 to Alt+5
        - prefix space
      • maxmize pane
        - prefix z
      • pane number
        - prefix q
      • kill pane
        - prefix x
      • break out pane
        - prefix !

转载于:https://www.cnblogs.com/wonux/p/6627375.html

你可能感兴趣的文章
使用Reporting Services时遇到的小问题
查看>>
约瑟夫问题
查看>>
Arduino 报错总结
查看>>
树莓派Android Things物联网开发:树莓派GPIO引脚图
查看>>
矩阵快速幂---BestCoder Round#8 1002
查看>>
如何将应用完美迁移至Android P版本
查看>>
【转】清空mysql一个库中的所有表的数据
查看>>
基于wxPython的python代码统计工具
查看>>
淘宝JAVA中间件Diamond详解(一)---简介&快速使用
查看>>
Hadoop HBase概念学习系列之HBase里的宽表设计概念(表设计)(二十七)
查看>>
Kettle学习系列之Kettle能做什么?(三)
查看>>
Day03:Selenium,BeautifulSoup4
查看>>
awk变量
查看>>
mysql_对于DQL 的简单举例
查看>>
35. Search Insert Position(C++)
查看>>
[毕业生的商业软件开发之路]C#异常处理
查看>>
一些php文件函数
查看>>
有关快速幂取模
查看>>
Linux运维必备工具
查看>>
字符串的查找删除
查看>>