A linux timer that times the following commands.
It will print the time in milliseconds after the process exits
brew tap mckernant1/tap
brew install timeit
--disable-output (-d)
Disables the output of the command
--num-of-times (-n) <INT>
Runs the command the command the specified amount of times. Prints all results in order at the end of any output
--continue-on-failure (-c)
By default we stop the run if an iteration fails. You can disable this by adding this flag
--parallel (-p)
Runs the jobs in parallel. Starts one thread per number of times specified
timeit npm run build
timeit brew update