Last active
July 22, 2018 12:40
-
-
Save candh/11655e1411128c8c47e7af9fff698219 to your computer and use it in GitHub Desktop.
tired of adobe processes spawning up on boot? I am. kills more adobe processes with `sudo`.
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 | |
for e in $(ps A | grep "Adobe" | awk '{print $1}'); | |
do | |
kill -9 $e | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment