-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
uninstall.sh
executable file
·475 lines (423 loc) · 11 KB
/
uninstall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
#!/bin/bash
# We don't need return codes for "$(command)", only stdout is needed.
# Allow `[[ -n "$(command)" ]]`, `func "$(command)"`, pipes, etc.
# shellcheck disable=SC2312
set -u
abort() {
printf "%s\n" "$@" >&2
exit 1
}
# Fail fast with a concise message when not using bash
# Single brackets are needed here for POSIX compatibility
# shellcheck disable=SC2292
if [ -z "${BASH_VERSION:-}" ]
then
abort "Bash is required to interpret this script."
fi
# Check if script is run in POSIX mode
if [[ -n "${POSIXLY_CORRECT+1}" ]]
then
abort 'Bash must not run in POSIX mode. Please unset POSIXLY_CORRECT and try again.'
fi
shopt -s extglob
strip_s() {
local s
for s in "$@"
do
s="${s## }"
echo "${s%% }"
done
}
dir_children() {
local p
for p in "$@"
do
[[ -d "${p}" ]] || continue
find "${p}" -mindepth 1 -maxdepth 1
done
}
# Set up temp dir
tmpdir="/tmp/uninstall.$$"
mkdir -p "${tmpdir}" || abort "Unable to create temp dir '${tmpdir}'"
trap '
rm -fr "${tmpdir}"
# Invalidate sudo timestamp before exiting
/usr/bin/sudo -k
' EXIT
# Default options
opt_force=""
opt_quiet=""
opt_dry_run=""
opt_skip_cache_and_logs=""
# global status to indicate whether there is anything wrong.
failed=false
un="$(uname)"
case "${un}" in
Linux)
ostype=linux
homebrew_prefix_default=/home/linuxbrew/.linuxbrew
;;
Darwin)
ostype=macos
if [[ "$(uname -m)" == "arm64" ]]
then
homebrew_prefix_default=/opt/homebrew
else
homebrew_prefix_default=/usr/local
fi
realpath() {
cd "$(dirname "$1")" && echo "$(pwd -P)/$(basename "$1")"
}
;;
*)
abort "Unsupported system type '${un}'"
;;
esac
# string formatters
if [[ -t 1 ]]
then
tty_escape() { printf "\033[%sm" "$1"; }
else
tty_escape() { :; }
fi
tty_mkbold() { tty_escape "1;${1:-39}"; }
tty_blue="$(tty_mkbold 34)"
tty_red="$(tty_mkbold 31)"
tty_bold="$(tty_mkbold 39)"
tty_reset="$(tty_escape 0)"
unset HAVE_SUDO_ACCESS # unset this from the environment
have_sudo_access() {
if [[ ! -x "/usr/bin/sudo" ]]
then
return 1
fi
local -a SUDO=("/usr/bin/sudo")
if [[ -n "${SUDO_ASKPASS-}" ]]
then
SUDO+=("-A")
fi
if [[ -z "${HAVE_SUDO_ACCESS-}" ]]
then
"${SUDO[@]}" -l mkdir &>/dev/null
HAVE_SUDO_ACCESS="$?"
fi
if [[ -z "${HOMEBREW_ON_LINUX-}" ]] && [[ "${HAVE_SUDO_ACCESS}" -ne 0 ]]
then
abort "Need sudo access on macOS (e.g. the user ${USER} needs to be an administrator)!"
fi
return "${HAVE_SUDO_ACCESS}"
}
shell_join() {
local arg
printf "%s" "$1"
shift
for arg in "$@"
do
printf " "
printf "%s" "${arg// /\ }"
done
}
resolved_pathname() { realpath "$1"; }
pretty_print_pathnames() {
local p
for p in "$@"
do
if [[ -L "${p}" ]]
then
printf '%s -> %s\n' "${p}" "$(resolved_pathname "${p}")"
elif [[ -d "${p}" ]]
then
echo "${p}/"
else
echo "${p}"
fi
done
}
chomp() {
printf "%s" "${1/"$'\n'"/}"
}
ohai() {
printf "${tty_blue}==>${tty_bold} %s${tty_reset}\n" "$(shell_join "$@")"
}
warn() {
printf "${tty_red}Warning${tty_reset}: %s\n" "$(chomp "$1")"
}
execute() {
if ! "$@"
then
abort "$(printf "Failed during: %s" "$(shell_join "$@")")"
fi
}
execute_sudo() {
local -a args=("$@")
if have_sudo_access
then
if [[ -n "${SUDO_ASKPASS-}" ]]
then
args=("-A" "${args[@]}")
fi
ohai "/usr/bin/sudo" "${args[@]}"
system "/usr/bin/sudo" "${args[@]}"
else
ohai "${args[@]}"
system "${args[@]}"
fi
}
system() {
if ! "$@"
then
warn "Failed during: $(shell_join "$@")"
failed=true
fi
}
####################################################################### script
homebrew_prefix_candidates=()
usage() {
cat <<EOS
Homebrew Uninstaller
Usage: [NONINTERACTIVE=1] $0 [options]
-p, --path=PATH Sets Homebrew prefix. Defaults to ${homebrew_prefix_default}.
--skip-cache-and-logs
Skips removal of HOMEBREW_CACHE and HOMEBREW_LOGS.
-f, --force Uninstall without prompting.
-q, --quiet Suppress all output.
-n, --dry-run Simulate uninstall but don't remove anything.
-h, --help Display this message.
NONINTERACTIVE Imply --force if NONINTERACTIVE is non-empty.
EOS
exit "${1:-0}"
}
while [[ $# -gt 0 ]]
do
case "$1" in
-p)
homebrew_prefix_candidates+=("$2")
shift
;;
--path)
homebrew_prefix_candidates+=("$2")
shift
;;
-p*) homebrew_prefix_candidates+=("${1#-p}") ;;
--path=*) homebrew_prefix_candidates+=("${1#--path=}") ;;
--skip-cache-and-logs) opt_skip_cache_and_logs=1 ;;
-f | --force) opt_force=1 ;;
-q | --quiet) opt_quiet=1 ;;
-d | -n | --dry-run) opt_dry_run=1 ;;
-h | --help) usage ;;
*)
warn "Unrecognized option: '$1'"
usage 1
;;
esac
shift
done
# Attempt to locate Homebrew unless `--path` is passed
if [[ "${#homebrew_prefix_candidates[@]}" -eq 0 ]]
then
prefix="$("${homebrew_prefix_default}"/bin/brew --prefix)"
[[ -n "${prefix}" ]] && homebrew_prefix_candidates+=("${prefix}")
prefix="$(command -v "${homebrew_prefix_default}"/bin/brew)" || prefix=""
[[ -n "${prefix}" ]] && homebrew_prefix_candidates+=("$(dirname "$(dirname "$(strip_s "${prefix}")")")")
homebrew_prefix_candidates+=("${homebrew_prefix_default}") # Homebrew default path
homebrew_prefix_candidates+=("${HOME}/.linuxbrew") # Linuxbrew default path
[[ "$(uname -m)" == "arm64" ]] && homebrew_prefix_candidates+=("/usr/local") # If migrated from Intel to ARM old path will remain
fi
HOMEBREW_PREFIX="$(
for p in "${homebrew_prefix_candidates[@]}"
do
[[ -d "${p}" ]] || continue
[[ ${p} == "${homebrew_prefix_default}" && -d "${p}/Homebrew/.git" ]] && echo "${p}" && break
[[ -d "${p}/.git" || -x "${p}/bin/brew" ]] && echo "${p}" && break
done
)"
[[ -n "${HOMEBREW_PREFIX}" ]] || abort "Failed to locate Homebrew!"
if [[ -d "${HOMEBREW_PREFIX}/.git" ]]
then
HOMEBREW_REPOSITORY="$(dirname "$(realpath "${HOMEBREW_PREFIX}/.git")")"
elif [[ -x "${HOMEBREW_PREFIX}/bin/brew" ]]
then
HOMEBREW_REPOSITORY="$(dirname "$(dirname "$(realpath "${HOMEBREW_PREFIX}/bin/brew")")")"
else
abort "Failed to locate Homebrew!"
fi
if [[ -d "${HOMEBREW_PREFIX}/Cellar" ]]
then
HOMEBREW_CELLAR="${HOMEBREW_PREFIX}/Cellar"
else
HOMEBREW_CELLAR="${HOMEBREW_REPOSITORY}/Cellar"
fi
if [[ -s "${HOMEBREW_REPOSITORY}/.gitignore" ]]
then
gitignore="$(<"${HOMEBREW_REPOSITORY}/.gitignore")"
else
gitignore="$(curl -fsSL https://raw.githubusercontent.com/Homebrew/brew/HEAD/.gitignore)"
fi
[[ -n "${gitignore}" ]] || abort "Failed to fetch Homebrew .gitignore!"
{
while read -r l
do
[[ "${l}" == \!* ]] || continue
l="${l#\!}"
l="${l#/}"
[[ "${l}" == @(bin|share|share/doc) ]] && echo "REJECT: ${l}" >&2 && continue
echo "${HOMEBREW_REPOSITORY}/${l}"
done <<<"${gitignore}"
if [[ "${HOMEBREW_PREFIX}" != "${HOMEBREW_REPOSITORY}" ]]
then
echo "${HOMEBREW_REPOSITORY}"
directories=(
bin/brew
etc/bash_completion.d/brew
share/doc/homebrew
share/man/man1/brew.1
share/man/man1/brew-cask.1
share/man/man1/README.md
share/zsh/site-functions/_brew
share/zsh/site-functions/_brew_cask
share/fish/vendor_completions.d/brew.fish
var/homebrew
)
for p in "${directories[@]}"
do
echo "${HOMEBREW_PREFIX}/${p}"
done
else
echo "${HOMEBREW_REPOSITORY}/.git"
fi
echo "${HOMEBREW_CELLAR}"
echo "${HOMEBREW_PREFIX}/Caskroom"
[[ -n ${opt_skip_cache_and_logs} ]] || cat <<-EOS
${HOME}/Library/Caches/Homebrew
${HOME}/Library/Logs/Homebrew
/Library/Caches/Homebrew
${HOME}/.cache/Homebrew
${HOMEBREW_CACHE:-}
${HOMEBREW_LOGS:-}
EOS
if [[ "${ostype}" == macos ]]
then
dir_children "/Applications" "${HOME}/Applications" | while read -r p2; do
[[ $(resolved_pathname "${p2}") == "${HOMEBREW_CELLAR}"/* ]] && echo "${p2}"
done
fi
} | while read -r l; do
[[ -e "${l}" ]] && echo "${l}"
done | sort -u >"${tmpdir}/homebrew_files"
homebrew_files=()
while read -r l
do
homebrew_files+=("${l}")
done <"${tmpdir}/homebrew_files"
if [[ -z "${opt_quiet}" ]]
then
dry_str="${opt_dry_run:+would}"
warn "This script ${dry_str:-will} remove:"
pretty_print_pathnames "${homebrew_files[@]}"
fi
# Always use single-quoted strings with `exp` expressions
# shellcheck disable=SC2016
if [[ -n "${NONINTERACTIVE-}" ]]
then
ohai 'Running in non-interactive mode because `$NONINTERACTIVE` is set.'
opt_force=1
fi
if [[ -t 0 && -z "${opt_force}" && -z "${opt_dry_run}" ]]
then
read -rp "Are you sure you want to uninstall Homebrew? This will remove your installed packages! [y/N] "
[[ "${REPLY}" == [yY]* ]] || abort
fi
[[ -n "${opt_quiet}" ]] || ohai "Removing Homebrew installation..."
paths=()
for p in Frameworks bin etc include lib opt sbin share var
do
p="${HOMEBREW_PREFIX}/${p}"
[[ -e "${p}" ]] && paths+=("${p}")
done
if [[ "${#paths[@]}" -gt 0 ]]
then
args=("${paths[@]}" -type l -lname '*/Cellar/*')
if [[ -n "${opt_dry_run}" ]]
then
args+=(-print)
else
args+=(-exec unlink '{}' ';')
fi
[[ -n "${opt_dry_run}" ]] && echo "Would delete:"
system /usr/bin/find "${args[@]}"
fi
for file in "${homebrew_files[@]}"
do
if [[ -n "${opt_dry_run}" ]]
then
echo "Would delete ${file}"
else
if ! err="$(rm -fr "${file}" 2>&1)"
then
warn "Failed to delete ${file}"
echo "${err}"
fi
fi
done
[[ -n "${opt_quiet}" ]] || ohai "Removing empty directories..."
paths=()
for p in bin etc include lib opt sbin share var Caskroom Cellar Homebrew Frameworks
do
p="${HOMEBREW_PREFIX}/${p}"
[[ -e "${p}" ]] && paths+=("${p}")
done
if [[ "${#paths[@]}" -gt 0 ]]
then
if [[ "${ostype}" == macos ]]
then
args=("${paths[@]}" -name .DS_Store)
if [[ -n "${opt_dry_run}" ]]
then
args+=(-print)
echo "Would delete:"
else
args+=(-delete)
fi
execute_sudo /usr/bin/find "${args[@]}"
fi
args=("${paths[@]}" -depth -type d -empty)
if [[ -n "${opt_dry_run}" ]]
then
args+=(-print)
echo "Would remove directories:"
else
args+=(-exec rmdir '{}' ';')
fi
execute_sudo /usr/bin/find "${args[@]}"
fi
[[ -n "${opt_dry_run}" ]] && exit
if [[ "${HOMEBREW_PREFIX}" != "${homebrew_prefix_default}" && -e "${HOMEBREW_PREFIX}" ]]
then
execute_sudo rmdir "${HOMEBREW_PREFIX}"
fi
if [[ "${HOMEBREW_PREFIX}" != "${HOMEBREW_REPOSITORY}" && -e "${HOMEBREW_REPOSITORY}" ]]
then
execute_sudo rmdir "${HOMEBREW_REPOSITORY}"
fi
if [[ -z "${opt_quiet}" ]]
then
if [[ "${failed}" == true ]]
then
warn "Homebrew partially uninstalled (but there were steps that failed)!"
echo "To finish uninstalling rerun this script with \`sudo\`."
else
ohai "Homebrew uninstalled!"
fi
fi
dir_children "${HOMEBREW_REPOSITORY}" "${HOMEBREW_PREFIX}" |
sort -u >"${tmpdir}/residual_files"
if [[ -s "${tmpdir}/residual_files" && -z "${opt_quiet}" ]]
then
echo "The following possible Homebrew files were not deleted:"
while read -r f
do
pretty_print_pathnames "${f}"
done <"${tmpdir}/residual_files"
echo -e "You may wish to remove them yourself.\n"
fi
[[ "${failed}" != true ]]