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
rekor-cli search
Description
The output of rekor-cli search currently prints one line before the actual results:
% echo 'RWTgyFZe5kun6ThArmRsxUKbmk8Wq32lpmBVLznM6OTyZBU/dV16vuzJ' | rekor-cli search --pki-format=minisign --public-key /dev/stdin Found matching entries (listed by UUID): dc20497cdddb5fdbcd42783c45a4cba49c34a62f5e9e89a1bbd78c0eaf8c17cd
This means I'd need to skip the first line with tail -n +2, instead I'd rather ask rekor to skip this line. :)
tail -n +2
Thanks!
The text was updated successfully, but these errors were encountered:
Cleanup the output of search (the text goes to stderr not stdout).
d709843
Fixes sigstore#420. Signed-off-by: Dan Lorenc <dlorenc@google.com>
Cleanup the output of search (the text goes to stderr not stdout). (#421
21fa448
) Fixes #420. Signed-off-by: Dan Lorenc <dlorenc@google.com>
Successfully merging a pull request may close this issue.
Description
The output of
rekor-cli search
currently prints one line before the actual results:This means I'd need to skip the first line with
tail -n +2
, instead I'd rather ask rekor to skip this line. :)Thanks!
The text was updated successfully, but these errors were encountered: