-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let it run indefinitely #20
Comments
I'll glom on here, I was going to use a good deal of electricity for vanity on a longer address (eight characters) and it appears to stop after a handful of seconds. |
yeah, that's definitely a good idea, I think I was being overly cautious when I first wrote that loop, but turning it into a simple infinite loop is a fine idea |
How would one tweak the loop at the end of the main() function in order to have an infinite loop? |
Replacing the |
A simple workaround in bash is to just make a oneline infinite while loop: while :; do <command>; done |
Is there a way to let it run indefinitely? For the moment, it stops running after an arbitrary time - even without finding any key
The text was updated successfully, but these errors were encountered: