Internet Explorer 6 on Linux Cleanup Script

Written by James McDonald

July 3, 2009

This is a quick and dirty hack I use to kill the zombie processes left after running an ies4linux install of Internet Explorer 6.

#!/bin/sh
ps -ef | grep wineserver | awk '{ print $2 }' | xargs kill -9
ps -ef | grep explorer.exe | awk '{ print $2 }' | xargs kill -9 
ps -ef | grep ie6 | awk '{ print $2 }'| xargs kill -9

Unfortunately this script does try to kill some of it’s own processes but not before doing the job.

If you can think of a better way I’d be interested in hearing it.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Robocopy exclude Directories

Just trying to copy everything except a couple of directories from a drive to my NAS This is the secret incantation of...