Created
September 19, 2014 17:13
-
-
Save suvene/2eb7c76841cce8d8e79c to your computer and use it in GitHub Desktop.
HomebrewでエラーになるのでMonoをごっそり消す - nabetama's blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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-* | |
for dir in /usr/bin /usr/share/man/man1 /usr/share/man/man3 /usr/share/man/man5; do | |
(cd ${dir}; | |
for i in `ls -al | grep /Library/Frameworks/Mono.framework/ | awk '{print $9}'`; do | |
rm ${i} | |
done); | |
done | |
http://weblog.nabetama.com/post/67256621142/homebrew-mono |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment