12 lines
242 B
Text
12 lines
242 B
Text
|
#!/usr/bin/env fish
|
||
|
|
||
|
function bdp -d "Delete one or more selected Homebrew packages"
|
||
|
set -f uninst (brew leaves | fzf -m)
|
||
|
|
||
|
if test -n "$uninst"
|
||
|
for pkg in (echo $uninst)
|
||
|
brew uninstall $pkg
|
||
|
end
|
||
|
end
|
||
|
end
|