dotfiles/homebrew/.config/fish/functions/bip.fish.symlink

12 lines
242 B
Text
Raw Normal View History

2024-02-10 19:38:09 -08:00
#!/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