Created
March 13, 2017 08:47
-
-
Save lucianghinda/e8e355ed6cd64690384a2798b6a24b64 to your computer and use it in GitHub Desktop.
Kill all Adobe Processes
This file contains 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 | |
ps axuwww | grep Adobe --exclude='grep' | awk '{print $2}' | xargs sudo kill -9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment