I switched to HomeBrew from Fink, and I want to uninstall Fink and all of the packages I installed with it to avoid problems in the future.
I found this perl snippet that should remove all pacages, but it doesn't:
fink list | perl -lne '/^s*is+(S+)/ and print $1' | xargs fink purge
How can I remove all of the packages?
