Skip to content

Instantly share code, notes, and snippets.

@michoo
michoo / fabfilter-remover.sh
Created August 31, 2025 16:09 — forked from kigster/fabfilter-remover.sh
Script to find and remove FabFilter plugins on Mac OS-X. Requires Terminal usage.
#!/usr/bin/env bash
if [[ ! -L lib || ! -L bootstrap ]]; then
[[ -z $(which curl) ]] && {
printf "Curl is required for this operation. Please install it with\n"
printf "brew install curl\n"
exit 1
}
curl -fsSL "http://bit.ly/bashmatic-bootstrap" | /usr/bin/env bash
fi