Skip to content

Instantly share code, notes, and snippets.

@dagvl
dagvl / uninstall_vmware.sh
Created December 26, 2018 23:29
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"