[Unix]등의 프롬프트환경에서, 스크린전환프로그램. (SeeAlso NoSmoke:프로그램예찬)
쉘에서 screen을 입력하면 바로, 스크린모드로 들어간다. 이후 Ctrl-A 을 치고 명령어를 치므로써, 스크린을 전환한다.
명령어들
- c : create a new screen
- space : cycle forward through screens
<n> : jump to screen #<n>
- w : list all available screens
- s : split the current screen in half (ie, have 2 half-sized terminals on the screen at once)
[ : enter a VimEditor-like mode for scrolling back through the current screen, as well as copying and pasting (Ctrl-]) text between multiple screens.
- Ctrl+d (or however else you normally log out of a shell) : remove a screen
- ? : find help about all the other commands.
Example
$ screen -S 세션이름 : 새로운 세션을 만든다. $ screen -d : 현재 세션을 detach시킨다. $ screen -r 세션이름 : 만들어진 세션에 다시 접속. $ screen -list : 만들어진 세션의 이름 출력. $ screen -x 세션이름 : 접속이 끊어지지 않은 세션에 접속. (접속한 스크린을 공유한다.)
SeeAlso http://bbs.kldp.org/viewtopic.php?t=19086