Kill screen identified by name

Linux (Debian). Kill all instances of the screen identified by the screen_name using the following command:

sudo screen -X thttp quit | grep screen_name | awk '{print $1}' | cut -d. -f1 | xargs kill

[Thanks to Zbyszek L.]

Leave a comment