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
Similar to PHP where you start buffer and then you can get the output of buffer to string.
This will allow to call exec and get the output as string. The API can be similar to PHP.
term.ob_start(); term.exec('some command'); const output = term.ob_get_contents(); term.ob_end_clean(); // or term.ob_end_flush();
The text was updated successfully, but these errors were encountered:
new API methods buffer_clean() and get_output_buffer() #717
buffer_clean()
get_output_buffer()
84e2d43
fix another edge case in #709 + refactor #717
80754fb
* fix case when echo two lines with echo newline and flush false * refactor get_output_buffer function * rename clear_buffer
The API is"
clear_buffer(); // and get_output_buffer();
Sorry, something went wrong.
No branches or pull requests
I have an idea for a new feature for jQuery Terminal
Similar to PHP where you start buffer and then you can get the output of buffer to string.
This will allow to call exec and get the output as string.
The API can be similar to PHP.
The text was updated successfully, but these errors were encountered: