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
First off, I really like this tool, so thank you for making it!
Imagine you have a program that slowly generates CSV lines. It'd be nice if csvlens could stream STDIN instead of waiting for it to close.
csvlens
Compare the behavior of these commands:
$ bash -c 'echo a,b; sleep 2; echo 1,2; sleep 2; echo 3,4' | less $ bash -c 'echo a,b; sleep 2; echo 1,2; sleep 2; echo 3,4' | csvlens
You'll notice that less starts showing output immediately, but csvlens waits a full 4 seconds to show any output.
less
The text was updated successfully, but these errors were encountered:
Thanks for the suggestion! Will look into adding support for this.
Sorry, something went wrong.
No branches or pull requests
First off, I really like this tool, so thank you for making it!
Imagine you have a program that slowly generates CSV lines. It'd be nice if
csvlens
could stream STDIN instead of waiting for it to close.Compare the behavior of these commands:
You'll notice that
less
starts showing output immediately, butcsvlens
waits a full 4 seconds to show any output.The text was updated successfully, but these errors were encountered: