Skip to content

Instantly share code, notes, and snippets.

@sxiii
Created June 20, 2021 22:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sxiii/5d36627675d05c0db69a0a8b2be79307 to your computer and use it in GitHub Desktop.
Save sxiii/5d36627675d05c0db69a0a8b2be79307 to your computer and use it in GitHub Desktop.
Kill all steam instances running on your computer in Linux
#!/bin/bash
# Kill all steam instances
sudo kill $(ps ax|grep "steam" | awk -F"\ " '{ print $1 }')
# Kill all wine instances
sudo wineserver -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment