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
Currently it's not possible to read from stdin:
$ docker logs tasks 2>&1 | ./jlv - Something went wrong: os: open -: no such file or directory.
A workaround is to use bash process substitution:
$ ./jlv <(docker logs tasks 2>&1)
The text was updated successfully, but these errors were encountered:
another way around is to use tee.
tee
docker logs tasks | tee tasks.logs jlv tasks.logs
btw, it's planned to be implemented! thanks for the issue!
Sorry, something went wrong.
feat(#55): support standart input (#75)
120d8df
included in v0.5.1
hedhyw
Successfully merging a pull request may close this issue.
Currently it's not possible to read from stdin:
A workaround is to use bash process substitution:
$ ./jlv <(docker logs tasks 2>&1)
The text was updated successfully, but these errors were encountered: