Si eres como yo y quieres mover GarageBand a otro lugar, como un disco duro de copia de seguridad,
$ mkdir -p /Volumes/DEVELOPMENT/BACKUP/Library/Application\ Support/
$ mv ~/Library/Application\ Support/GarageBand/ /Volumes/DEVELOPMENT/BACKUP/Library/Application\ Support/
$ mkdir /Volumes/DEVELOPMENT/BACKUP/Applications/
$ mv /Applications/GarageBand.app /Volumes/DEVELOPMENT/BACKUP/Applications/
entonces, si quieres recuperar la Garageband cuando tienes un disco duro más grande, haces lo inverso
$ mv /Volumes/DEVELOPMENT/BACKUP/Library/Application\ Support/GarageBand/ ~/Library/Application\ Support/
$ mv /Volumes/DEVELOPMENT/BACKUP/Applications/GarageBand.app /Applications/
Debes ejecutar algunos comandos como sudo
like $ sudo mv...
.