mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
|
# Start a new named screen session:
|
||
|
screen -S session_name
|
||
|
|
||
|
# Detach from the current session:
|
||
|
Press Ctrl+A then press d
|
||
|
|
||
|
# Re-attach a detached session:
|
||
|
screen -r session_name
|
||
|
|
||
|
# List all screen sessions:
|
||
|
screen -ls
|