Skip to content

Instantly share code, notes, and snippets.

@Jfortin1
Created December 6, 2014 03:19
Show Gist options
  • Save Jfortin1/63ee7706fa103271cf1f to your computer and use it in GitHub Desktop.
Save Jfortin1/63ee7706fa103271cf1f to your computer and use it in GitHub Desktop.
To kill all your screen sessions
killscreens () {
screen -ls | grep Detached | cut -d. -f1 | awk '{print $1}' | xargs kill
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment