dotfiles/homebrew/.config/fish/functions/bip.fish.symlink
2024-02-10 19:38:09 -08:00

11 lines
242 B
Fish

#!/usr/bin/env fish
function bip -d "fzf and install one or more Homebrew packages"
set -f inst (brew search "$argv" | fzf -m)
if test -n "$inst"
for pkg in (echo $inst)
brew install $pkg
end
end
end