Forked from lucianghinda/kill-adobe-creative-cloud.sh
Last active
October 27, 2020 06:35
-
-
Save earendildev/b21d6395ec8fa577c6777fba28dddc62 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 | |
ps axuwww | grep 'com.adobe.acc.installer.v2' --exclude='grep' | awk '{print $2}' | xargs sudo kill -9 | |
echo "\n\n--- Done! ---\n\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If it shows
No such process
, it means that it worked.All background processes by Adobe are terminated..