Top "Stdout" questions

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

Qt standard output. cout does no print

I saw this question already on this forum but i do not know why the proposed answer does not work …

c++ qt stdout cout
Merging a Python script's subprocess' stdout and stderr while keeping them distinguishable

I would like to direct a python script's subprocess' stdout and stdin into the same file. What I don't know …

python subprocess stdout stderr
Redirect the output (stdout, stderr) of a child process to the Output window in Visual Studio

At the moment I am starting a batch file from my C# program with: System.Diagnostics.Process.Start(@"DoSomeStuff.bat"); …

c# visual-studio visual-studio-2008 stdout output-window
How to write buffer content to stdout?

Is there any chance to write the content of the current vim buffer to stdout? I'd like to use vim …

shell vim stdout vi
using bash: write bit representation of integer to file

I have a file with binary data and I need to replace a few bytes in a certain position. I've …

bash unix stdout binaryfiles
Ordering Output in MPI

in a simple MPI program I have used a column wise division of a large matrix. How can I order …

stdout mpi
How can I reinitialize Perl's STDIN/STDOUT/STDERR?

I have a Perl script which forks and daemonizes itself. It's run by cron, so in order to not leave …

perl redirect stdout stdin stderr
Redirect STDOUT and STDERR to socket in C?

I am trying to redirect STDOUT AND STDERR to a socket. I did: if(fork() == 0) { dup2(newsock, STDOUT_FILENO); dup2(…

c bash shell stdout dup
How to redirect STDOUT and STDERR to a variable

I want to redirect STDERR and STDOUT to a variable. I did this. close(STDOUT); close(STDERR); my $out; open(…

perl system stdout stderr redirect
Possible to capture PHP echo output?

So I have a function such as: public static function UnorderedList($items, $field, $view = false){ if(count($items) > 0){ echo …

php stdout echo