#!/usr/bin/env bash set -euo pipefail DEST="/usr/local/bin/pawdance" if [[ -f "$DEST" ]]; then echo "Removing $DEST …" rm -f "$DEST" echo "Uninstalled." echo syncing file system... sudo sync echo done else echo "Nothing to do – $DEST not found." fi