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

12 lines
260 B
Text
Executable file

### BREW + FZF
# update multiple packages at once
# mnemonic [B]rew [U]pdate [P]lugin
local inst=$(brew search | eval "fzf ${FZF_DEFAULT_OPTS} -m --header='[brew:install]'")
if [[ $inst ]]; then
for prog in $(echo $inst)
do brew install $prog
done
fi