Top "Stdout" questions

The standard output stream (stdout) is the stream where a program writes its output data.

How can I get unicode characters from robocopy process standard ouput in c#

Our application runs various actions and displays the output in a log window. One action uses robocopy to copy files …

c# unicode process stdout robocopy
How to redirect stdout stderr in an ant script?

I am triggering an ant script (via cruise control), and would like to be able to dump the std out …

ant stdout cruisecontrol stderr
How can close and reopen STDOUT in Perl?

I'd like to close STDOUT to prevent my code from outputing a particular image that I need for further computation …

perl cgi stdout
bash variable capture stderr and stdout separately or get exit value

I need to capture the output and error of a command in my bash script and know whether the command …

bash variables stdout capture stderr
Is it safe to disable buffering with stdout and stderr?

Sometimes we put some debug prints in our code this way printf("successfully reached at debug-point 1\n"); some code is …

c linux stdout stderr buffering
Need to avoid subprocess deadlock without communicate

I need a execute a command that produces a lot of output and takes a lot of time to execute (&…

python subprocess pipe stdout deadlock
Retaining output colors when shelling out to node

I have a little Grunt task that shells out via node and runs "composer install". var done = this.async(); var …

javascript node.js stdout gruntjs child-process
Writing to both terminal and file c++

I found this question answered for Python, Java, Linux script, but not C++: I'd like to write all outputs of …

c++ stdout fclose freopen
NodeJS spawn stdout string format

I'm spawning a process in node and tracking the output of the command like this: proc.stdout.on("data", function (…

node.js stdout spawn
Using tee to get realtime print statements from python

I have a python script that looks something like this: for item in collection: print "what up" #do complicated stuff …

python stdout tee