Last active
October 13, 2015 02:48
-
-
Save tranthamp/4127722 to your computer and use it in GitHub Desktop.
screen notes
This file contains 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
# Start a new named session | |
screen -S <name> | |
# Attach to a running named session | |
screen -x <name> | |
# Create a new window | |
ctrl-a c | |
# Name a window | |
ctrl-a A | |
# List windows | |
ctrl-a " | |
# Enable multiuser mode | |
ctrl-a :multiuser on | |
# Add a use to the access control list | |
ctrl-a :acladd <user> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment