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
Running a query to the console outputs the contents fast.
But doing the same thing and piping to tee or to grep like
livetail ... | tee log livetail .. | grep "..."
Data doesn't arrive to the piped process until livetail is closed or a good amount of data has passed...
I think this may be because livetail doesn't flush it's writes to the pipe?
The text was updated successfully, but these errors were encountered:
Same issue.
Sorry, something went wrong.
Works perfectly for me with grep and ag ;)
I use the unbuffer command from the expect package. This forces everything to be flushed immediately.
unbuffer livetail ...
No branches or pull requests
Running a query to the console outputs the contents fast.
But doing the same thing and piping to tee or to grep like
livetail ... | tee log
livetail .. | grep "..."
Data doesn't arrive to the piped process until livetail is closed or a good amount of data has passed...
I think this may be because livetail doesn't flush it's writes to the pipe?
The text was updated successfully, but these errors were encountered: