linux上screen常用的快捷键

前言:

最近为了跑多个shell来上传镜像,所以接触了screen,但是一般介绍的screen教程比较少,不能提供比较实用的快捷方式,这里搜索到了就分享下:

refer:http://www.pixelbeat.org/lkdb/screen.html

正文:

screen is a much under utilised program, which provides the following functionality:

  • Remote terminal session management (detaching or sharing terminal sessions)
  • unlimited windows (unlike the hardcoded number of Linux virtual consoles)
  • scrollback buffer (not limited to video memory like Linux virtual consoles)
  • copy/paste between windows
  • notification of either activity or inactivity in a window
    split terminal (horizontally and vertically) into multiple regions
  • locking other users out of terminal
    See also my screen settings
    See also the tmux alternative
    See also the byobu screen config manager.
    See also the reptyr as another way to reattach programs to a terminal.
    Note for nested screen sessions, use “Ctrl+a a” to send commands to the inner screen,
    and the standard “Ctrl+a” to send commands to the outer screen.
    在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/albertjone/article/details/84840483