mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-20 13:15:33 +00:00
10 lines
208 B
Fish
10 lines
208 B
Fish
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
|