Skip to content

Instantly share code, notes, and snippets.

@cpappen
Created August 20, 2016 15:17
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 cpappen/6df3f40a2bbb0a4e482ed3fc0249fc58 to your computer and use it in GitHub Desktop.
Save cpappen/6df3f40a2bbb0a4e482ed3fc0249fc58 to your computer and use it in GitHub Desktop.
kill evolution processes in startup on ubuntu 16.04
# open gnome-session-properties and add this command to start on startup
for pid in $(ps -ef | awk '/evolution/ {print $2}'); do kill -9 $pid; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment