Question
Getting rid of Cory Sync helper
For anyone that has like a million copies of "Core Sync helper" after installing creative cloud, and see it running even when not using any Adobe product,use this script to get rid of that garbage:
echo "get rid adobe garbage"
ps -A | grep Adobe | awk '{print $1}' > core.txt
while read p; do
sudo kill -9 $p
done <core.txt
