####################### 屏幕分割 ########################

1. screen
2. Ctrl-a c    # create a new screen
3. switch between screens
      Ctrl-a 0-9  
      Ctrl-a Ctrl-a   
      Ctrl-a "    # list all available screens
4. Ctrl-a S  # split terminal vertically
    Ctrl-a TAB   # switch to another splitted part then use step 3 to select a screen
5. Ctrl-a Q  # return to full size

####################### detach / attach ########################
1. screen
2. Ctrl-a d    # detach, screen exit
3. screen -ls  # list detached sessions
4. screen -r   # reattach session, if there are more than one session, then you need specifies the pid
5. reattach will not restore the splitted windows

http://deep.tw/others/screen/split-vertical.html
Key    Action    Notes
Ctrl+a c     new window     
Ctrl+a n     next window     
Ctrl+a p     previous window     
Ctrl+a “     select window from list     
Ctrl+a Ctrl+a     previous window viewed     
Ctrl+a S     split terminal horizontally into regions     Ctrl+a c to create new window there
Ctrl+a |     split terminal vertically into regions     Requires debian/ubuntu patched screen 4.0
Ctrl+a :resize     resize region     
Ctrl+a :fit     fit screen size to new terminal size     Ctrl+a F is the same. Do after resizing xterm
Ctrl+a :remove     remove region     Ctrl+a X is the same
Ctrl+a tab     Move to next region     
Ctrl+a d     detach screen from terminal     Start screen with -r option to reattach
Ctrl+a A     set window title     
Ctrl+a x     lock session     Enter user password to unlock
Ctrl+a [     enter scrollback/copy mode     Enter to start and end copy region. Ctrl+a ] to leave this mod
Ctrl+a ]     paste buffer     Supports pasting between windows
Ctrl+a >     write paste buffer to file     useful for copying between screens
Ctrl+a <     read paste buffer from file     useful for pasting between screens
Ctrl+a ?     show key bindings/command names     Note unbound commands only in man page
Ctrl+a :     goto screen command prompt     up shows last command entered

screen 基础用法(转)的更多相关文章

  1. 【Python爬虫】selenium基础用法

    selenium 基础用法 阅读目录 初识selenium 基本使用 查找元素 元素互交操作 执行JavaScript 获取元素信息 等待 前进后退 Cookies 选项卡管理 异常处理 初识sele ...

  2. PropertyGrid控件由浅入深(二):基础用法

    目录 PropertyGrid控件由浅入深(一):文章大纲 PropertyGrid控件由浅入深(二):基础用法 控件的外观构成 控件的外观构成如下图所示: PropertyGrid控件包含以下几个要 ...

  3. logstash安装与基础用法

    若是搭建elk,建议先安装好elasticsearch 来自官网,版本为2.3 wget -c https://download.elastic.co/logstash/logstash/packag ...

  4. elasticsearch安装与基础用法

    来自官网,版本为2.3 注意elasticsearch依赖jdk,2.3依赖jdk7 下载rpm包并安装 wget -c https://download.elastic.co/elasticsear ...

  5. BigDecimal最基础用法

    BigDecimal最基础用法 用字符串生成的BigDecimal是不会丢精度的. 简单除法. public class DemoBigDecimal { public static void mai ...

  6. Vue组件基础用法

    前面的话 组件(Component)是Vue.js最强大的功能之一.组件可以扩展HTML元素,封装可重用的代码.根据项目需求,抽象出一些组件,每个组件里包含了展现.功能和样式.每个页面,根据自己所需, ...

  7. Smarty基础用法

    一.Smarty基础用法: 1.基础用法如下 include './smarty/Smarty.class.php';//引入smarty类 $smarty = new Smarty();//实例化s ...

  8. 前端自动化测试神器-Katalon的基础用法

    前言 最近由于在工作中需要通过Web端的功能进行一次大批量的操作,数据量大概在5000左右,如果手动处理, 完成一条数据的操作用时在20秒左右的话,大概需要4-5个人/天的工作量(假设一天8小时的工作 ...

  9. Bootstrap fileinput:文件上传插件的基础用法

    官网地址:http://plugins.krajee.com/ 官网提供的样例:http://plugins.krajee.com/file-input/demo 基础用法一 导入核心CSS及JS文件 ...

随机推荐

  1. java基础之final关键字

    final: 意为终态.在java中得注意以下四点: 1.final是一个修饰符,可修饰变量,方法,类. 2.final修饰子类不可以被继承. 3.final修饰的方法不可以被重写(覆盖) 4.对于一 ...

  2. kafka数据祸福和failover

    k CAP帽子理论. consistency:一致性 Availability:可用性 partition tolerance:分区容忍型 CA :mysql oracle(抛弃了网络分区) CP:h ...

  3. spfa模版

    #include<bits/stdc++.h> using namespace std; int n,m;//点边 int beginn; ],v[],w[]; ],nextt[]; ]; ...

  4. vue.js_05_vue.js的过滤器

    1.过滤器的定义和使用 实现:将页面的中的单纯替换成,用户传来的文字. 全局过滤器:所有的Vue对象都可以使用 <body> <div id="app"> ...

  5. 20191005 - New Beginning

    真·反思 Before 发现$T1$是约瑟夫,$T2$不清楚,$T3$是算法进阶上的$LCIS$ During得&失 做的不错的地方: 多少想了T1的优化(最后没打完). T3的暴力写得很快也 ...

  6. XAMPP:继MAMP之后,Mac OS X平台下又一款帮你快速搭建服务器环境软件

    之前,有很多人都有打算在自己的Mac OS下搭建一个本地测试用的Apache+PHP+MySQL网络服务器环境. 在目前而言至少有3种办法可以实现这一点: 通过Xcode开发者套件和php.Apach ...

  7. Spring注解驱动开发(一)-----组件注册

    注册bean xml方式 1.beans.xml-----很简单,里面注册了一个person bean <?xml version="1.0" encoding=" ...

  8. 解决 Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'

    If you are looking for the solution in Android Studio : Right click on your app Open Module Settings ...

  9. PAT甲级——A1043 Is It a Binary Search Tree

    A Binary Search Tree (BST) is recursively defined as a binary tree which has the following propertie ...

  10. No module named 'sklearn.impute',更新scikit-learn

    -------我错了,本篇作废,我把自己的包更新坏了,大家不要往下看了------------------最终我是把anaconda卸载重装的--------- 使用scikit-learn模块进行缺 ...