Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'How to uninstall MacGIMP' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
How to uninstall MacGIMP
Authored by: colmc on Nov 25, '03 11:39:58AM
There's no need to use rmdir. Simply use
rm -rf
to remove any file or directory including the files it contains. In your example:

sudo find / -group 17025 -iname "*gimp*" -print -exec rm -rf {} \;


[ Reply to This | # ]