dotfiles/.config/fish/functions/do.fish

10 lines
208 B
Fish
Raw Normal View History

function do -d 'Repeat the command for each given argument'
set command (string split ' ' $argv[1])
and set args $argv[2..]
or return 1
for arg in $args
$command $arg
end
end