Skip to content

Instantly share code, notes, and snippets.

@ryannix123
ryannix123 / uninstall_office_2016.sh
Created August 9, 2018 17:03 — forked from pirafrank/uninstall_office_2016.sh
Uninstall Office 2016 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