Michael Jay Lissner
  • Home
  • About Site
  • Contact
  • Projects & Papers
  • Tags
  • Archives

A Script to Kill Evolution

I use Evolution as my mail reader, and I like it. It has a lot of good features including a calendar, address book, memos and mail, as well as a number of others. One problem though is that it gets caught up when processing mail, and sometimes just won’t come back.

The other problem is that it has several helper apps that are behind the scenes making things work properly, so if you try to just kill the application itself, those will still be running and your problem may not be solved.

My solution was to write a short script to kill all of Evolution and its helper apps. Hope this helps somebody else someday:

% more bin/evokill 
#!/bin/bash

ps aux | grep evolution
kill `ps aux | grep evolution | awk -F' ' '{print $2}'`

This script just looks for any application that has the word evolution in its name, and then sends it the kill signal. Not too sophisticated, but it gets the job done. You could easily substitute the word evolution for something else as well.

I love getting feedback and comments. Make my day by making a comment.

Comments
comments powered by Disqus

  • « Radar Analysis Charts: Fun, Trendy, BAD!
  • Change the Default Print to File To PDF in Ubuntu Hardy Heron »

Published

Oct 13, 2008

Category

Tech

Tags

  • Bash 3
  • Evolution 1
  • Script 3

Contact

This is Reader-Editable

Edit this post on Github

Get Weekly Updates

  • Unless mentioned otherwise, all material on this site is licensed under a Creative Commons copyright or the GNU Affero GPL. Privacy Policy.
  • Powered by Pelican. Theme: Elegant by Talha Mansoor