Skip to content
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

Use GNU parallel to speed up #3

Open
yegle opened this issue Feb 6, 2023 · 1 comment
Open

Use GNU parallel to speed up #3

yegle opened this issue Feb 6, 2023 · 1 comment

Comments

@yegle
Copy link

yegle commented Feb 6, 2023

Example command:

parallel --halt now,success=1 -u -N0 python vanity_npub.py -j1 TARGET ::: {0..$(nproc)}

Explanation:

  • --halt now,success=1: stop all commands as soon as one of them returned success
  • -u: do not group output by commands
  • -N0: the command takes 0 argument (essentially, run the same command X times)
  • ::: {0..$(nproc)}: generate # of commands matches # of CPUs
@yegle
Copy link
Author

yegle commented Feb 6, 2023

Hmm {0..$(nproc)} seems to be a zsh specific thing. Maybe change it to $(seq 1 $(nproc))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant