12 lines
242 B
Text
12 lines
242 B
Text
|
#!/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
|