I have multiple screens running on an Ubuntu server that are initiated as:
screen -dmS screen1 cmd
screen -dmS screen2 cmd
etc...
And I need to kill one screen, but not all of them. What is the correct command to kill a single particular screen with its name? I've read through the man pages but I can't seem to find the command I am looking for.
Also I want to write this command into a bash script so I can't simply screen -r screen1
then press Ctrl+X as I normally would.