Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
|
#!/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[@]}"
|