9 examples for screen

{{ score }}
  # list all screen sessions for current user
screen -ls

# list all screen sessions on current host
ls -laR /var/run/screen/
        
{{ score }}
  # quit a screen session
screen -X -S screenName quit
        
{{ score }}
  # Attaches to an already attached session
screen -d -r sessionIdOrName
        
{{ score }}
  # Execute command in background screen
screen -d -m top

# Show running screen session
screen -ls

# Output like: 
#  There is a screen on:
#	13472..

# Then connect to this screen session to see top is running
screen -r 13472
        
{{ score }}
  # Connect to any active screen, even if it already has connections from other terminals.
# This is useful if you forgot to detach from screen on a different computer. Everything is simply mirrored.  
screen -x
        
{{ score }}
  # Connect to a USB-to-Serial adapter for embedded systems (e.g. Raspberry Pi, Beagleboard, ...):
# (check the name of your chipset via "ls /dev/tty*" before and after attaching cable)
screen /dev/tty.usbserial 115200
        
{{ score }}
  # Allow scrolling (enter copy mode)
+, 

# Exit scrolling/copy mode

        
{{ score }}
  # Start a new screen session
screen