mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-20 05:05:35 +00:00
6 lines
139 B
Fish
6 lines
139 B
Fish
function repeat -a count -d 'Repeat the given action the given number of times'
|
|
for i in (seq $count)
|
|
$argv[2..-1]
|
|
end
|
|
end
|