theniceboy/zsh/fzf/bcp
2020-03-04 22:48:38 -08:00

11 lines
232 B
Text
Executable file

### BREW + FZF
# mnemonic [B]rew [I]nstall [P]lugin
local uninst=$(brew leaves | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[brew:clean]'")
if [[ $uninst ]]; then
for prog in $(echo $uninst)
do brew uninstall $prog
done
fi