Skip to content

Instantly share code, notes, and snippets.

@candh
Last active July 22, 2018 12:40
Show Gist options
  • Save candh/11655e1411128c8c47e7af9fff698219 to your computer and use it in GitHub Desktop.
Save candh/11655e1411128c8c47e7af9fff698219 to your computer and use it in GitHub Desktop.
tired of adobe processes spawning up on boot? I am. kills more adobe processes with `sudo`.
#!/bin/bash
for e in $(ps A | grep "Adobe" | awk '{print $1}');
do
kill -9 $e
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment