Uninstall Mono from Mac OS X v10.5 Leopard

Posted by Mac on Stack Overflow See other posts from Stack Overflow or by Mac
Published on 2008-09-16T17:38:20Z Indexed on 2010/04/10 10:23 UTC
Read the original article Hit count: 569

Filed under:
|

I installed Mono on my iMac last night and I immidiately had a change of heart! I don't think Mono is ready for prime time.

The Mono website says to run the following script to uninstall:

#!/bin/sh -x
#This script removes Mono from an OS X System.  It must be run as root
rm -r /Library/Frameworks/Mono.framework
rm -r /Library/Receipts/MonoFramework-SVN.pkg
cd /usr/bin
for i in `ls -al | grep Mono | awk '{print $9}'`; do
rm ${i}
done

Has anyone had to uninstall Mono? Was it as straight forward as running the above script or do I have to do more? How messy was it? Any pointers are appreciated.

Thanks

© Stack Overflow or respective owner

Related posts about mono

Related posts about leopard