We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example command:
parallel --halt now,success=1 -u -N0 python vanity_npub.py -j1 TARGET ::: {0..$(nproc)}
Explanation:
--halt now,success=1
-u
-N0
::: {0..$(nproc)}
The text was updated successfully, but these errors were encountered:
Hmm {0..$(nproc)} seems to be a zsh specific thing. Maybe change it to $(seq 1 $(nproc))
{0..$(nproc)}
zsh
$(seq 1 $(nproc))
Sorry, something went wrong.
No branches or pull requests
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 CPUsThe text was updated successfully, but these errors were encountered: