Created
October 7, 2016 23:41
-
-
Save aerickson/0836aa8e1ee9ab13a1214b8838fa89ae to your computer and use it in GitHub Desktop.
gnu-screen tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Screen Cheat Sheet | |
=========================== | |
terminal usage: | |
new session: | |
screen | |
new named session: | |
screen -S <NAME> | |
view sessions: | |
screen -list | |
resume session: | |
screen -r (<NAME|ID>) | |
inside screen: | |
ctrl-a is the default command sequence | |
previous window: | |
crtl-a a | |
create new window: | |
ctrl-a c | |
destroy current window: | |
ctrl-a k | |
scrollback mode: | |
ctrl-a esc | |
- now arrow keys work | |
- to page up/down, hold fn-ctrl and use arrow keys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment