Files
dots/common/.config/fish/functions/clis.fish
T
2026-09-17 20:45:06 +02:00

8 lines
290 B
Fish

function clis --description 'fzf select cli'
# one eval per selection — a single eval of the joined lines would run the
# first command with the other selections as its arguments
for cmd in (cat $HOME/.config/misc/clis.txt | command fzf --multi)
eval $cmd
end
end