On Mon, 12 Dec 2022 21:51:09 -0800, Eric Biggers wrote: > > -while [ $i -le $loop ]; do > > +for ((i = 1; i < loop; i++)); do > > This does one fewer iteration than before. Gah you're right. I'll drop this patch as it was only intended as a readability clean-up. Thanks for the review. Cheers, David