Created
June 20, 2021 22:16
-
-
Save sxiii/5d36627675d05c0db69a0a8b2be79307 to your computer and use it in GitHub Desktop.
Kill all steam instances running on your computer in Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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