asngecko/uninstall.sh
2025-06-11 23:20:18 +02:00

18 lines
305 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
#
# Remove /usr/local/bin/asngecko
set -euo pipefail
DEST="/usr/local/bin/asngecko"
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