Skip to content

Instantly share code, notes, and snippets.

View fruwe's full-sized avatar

Christian-Manuel Butzke fruwe

View GitHub Profile
@pirafrank
pirafrank / uninstall_office_2011.sh
Last active November 29, 2016 15:58
Uninstall Office 2011 from OS X completely
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo -e "
ROOT PRIVILEDGES NEEDED!
You have to run this script as root.
Aborting...
"
exit 1
else