Add repeat fish function and refactor sync script variables

This commit is contained in:
mitchell 2020-10-13 19:05:07 -04:00
parent dd7e7e3857
commit 3f93599ba4
2 changed files with 10 additions and 5 deletions

View file

@ -0,0 +1,5 @@
function repeat -a count -d 'Repeat the given action the given number of times'
for i in (seq $count)
$argv[2..-1]
end
end