mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-12-17 12:27:22 +00:00
5 lines
139 B
Fish
5 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
|