New comment by beginner3456789 on void-packages repository https://github.com/void-linux/void-packages/issues/18777#issuecomment-586059548 Comment: Thanks for the reply. I tried the following test on my old Intel Ironlake with 500Gb hard disk and there was very little difference so I am very surprised. Feel free to dispose of this issue as desired. ``` # echo $PATH /usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin # ./test1000.sh real 0m1.035s user 0m0.390s sys 0m0.688s # PATH=/usr/bin # echo $PATH /usr/bin # ./test1000.sh real 0m0.999s user 0m0.400s sys 0m0.640s # cat ./test1000.sh #!/bin/bash time (i=0; while [[ i -lt 1000 ]]; do foo${i} 2>/dev/null; (( i++ )); done) # exit ```