Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
|
#!/bin/bash
|
|
|
|
|
|
declare -a packages rdepends
|
|
|
packages=("$@")
|
|
|
|
|
|
# have to try one by one, otherwise `brew uses` would only print
|
|
|
# packages that require them all rather than any of them
|
|
|
for package in "${packages[@]}"; do
|
|
|
rdepends+=($(brew uses --installed --include-build --include-test --include-optional --recursive "$package"))
|
|
|
done
|
|
|
brew uninstall "${packages[@]}" "${rdepends[@]}"
|