Skip to content

Instantly share code, notes, and snippets.

@almonteb
almonteb / uninstall_vmware.sh
Created January 12, 2018 21:39
Completely uninstall VMWare on macOS
#!/usr/bin/env bash
# Usage: bash uninstall_vmware.bash
remove() {
entry="$1"
echo -ne "Removing $entry ["
sudo rm -rf "$entry"
if [[ ! -e "$entry" ]]; then
echo -ne "OK"