Skip to content

Instantly share code, notes, and snippets.

@earendildev
earendildev / kill-adobe-cc.sh
Last active October 27, 2020 06:35 — forked from lucianghinda/kill-adobe-creative-cloud.sh
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"