Benchmark and compare command execution times with statistical analysis.
Command-line benchmarking tool
hyperfine$ hyperfine 'sleep 1'$ hyperfine 'cat file.txt' 'less file.txt'$ hyperfine --runs 100 'npm build'$ hyperfine 'grep pattern file.txt' 'rg pattern file.txt'$ hyperfine --warmup 3 'python script.py'