1

I’ve found this script from Paul Beach, but I want to know if there is a better way (maybe a script included in the installation).

Hennes
  • 64,768
  • 7
  • 111
  • 168
Erick Sasse
  • 191
  • 4
  • 10
  • Suggest move to SuperUser; question not programming-related. – amphetamachine Jul 08 '10 at 02:44
  • According to FAQ, questions related to tools used by programmers or related to software development in some way are valid, that’s why I posted here since I and a lot of programmers also use Firebird for development. – Erick Sasse Jul 08 '10 at 03:05

2 Answers2

1

The script is modifying environment outside of user's home directory: removing installed frameworks, global groups etc. Proper way how do this would be dedicated uninstaller. With no uninstaller available, something like that script is probably best / simplest solution.

For most applications, utilities like AppZapper handle unistallation + clean up ~/Library/ subfolders. Worth trying out for other situations - http://www.appzapper.com/, but in this case will likely not be sufficient.

Miro A.
  • 245
  • 1
  • 9
1

The script you found is safe and doing all the cleaning to be done.

If you copied it under:

/tmp/firebird_uninstall

you have to fire it with:

/usr/bin/sudo /tmp/firebird_uninstall
dan
  • 374
  • 1
  • 13