Hacker News new | ask | show | jobs
by jmholla 91 days ago
FYI, in your reproduction, both of the conditionals are the same. But you are right, the initial implementation was `!=`

    while [[ $SECONDS != $1 ]]; do
became

    while [[ $SECONDS -lt $1 ]]; do
1 comments

>.< idk why I copy pasted my line with the correction again. Sorry about that, but glad you got it despite that haha