Skip to content

Instantly share code, notes, and snippets.

@kenianbei
Created February 11, 2022 02:49
Show Gist options
  • Save kenianbei/4a6df896ab79f30e5a35287429570f15 to your computer and use it in GitHub Desktop.
Save kenianbei/4a6df896ab79f30e5a35287429570f15 to your computer and use it in GitHub Desktop.
Kill Adobe Bloat (Mac)
#!/bin/bash
PROCESSES=(
'ACCFinderSync'
'Adobe_CCXProcess'
'AdobeIPCBroker'
'Adobe Desktop Service'
'CrashHandler'
'AdobeCRDaemon'
'Creative Cloud Helper'
'Core Sync'
'com.adobe.acc.installer.v2'
'Adobe Installer'
'CCLibrary.app'
)
for PROCESS in "${PROCESSES[@]}"; do
PIDS=($(ps -fe | grep "$PROCESS" | grep -v grep | awk '{print $2}'))
for PID in "${PIDS[@]}"; do
kill -9 $PID
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment