Skip to content

Instantly share code, notes, and snippets.

@earendildev
Forked from lucianghinda/kill-adobe-creative-cloud.sh
Last active October 27, 2020 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save earendildev/b21d6395ec8fa577c6777fba28dddc62 to your computer and use it in GitHub Desktop.
Save earendildev/b21d6395ec8fa577c6777fba28dddc62 to your computer and use it in GitHub Desktop.
Kill all Adobe Processes
#!/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"
@earendildev
Copy link
Author

If it shows No such process, it means that it worked.
All background processes by Adobe are terminated..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment