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
I want to pipe password from passwordstore to zxcvbn, but zxcvbn keeps asking for input a password as is there is no stdout
➜ zxcvbn-python git:(master) ✗ pass test x3]`@;t*K`R^!"4qVsR"wbO&^ ➜ zxcvbn-python git:(master) ✗ pass test | zxcvbn | jq Password:
The text was updated successfully, but these errors were encountered:
I am not familiar with pass. Is it possible it is outputting your password to stderr instead of stdout? Does pass test 2>&1 | zxcvbn | jq work?
stderr
stdout
pass test 2>&1 | zxcvbn | jq
It works fine for me with echo "password" | zxcvbn | jq
echo "password" | zxcvbn | jq
Sorry, something went wrong.
No branches or pull requests
I want to pipe password from passwordstore to zxcvbn, but zxcvbn keeps asking for input a password as is there is no stdout
The text was updated successfully, but these errors were encountered: