tide/dev/bench.fish
2020-05-08 22:48:35 -07:00

11 lines
212 B
Fish

function bench -a command times
set -l thingToRun
for i in (seq $times)
set -a thingToRun $command
end
eval (string join ';' $thingToRun) >>'/dev/null'
math $CMD_DURATION/$times
end