Top "Stdout" questions

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

SSH.NET RunCommand To Save Command Output to File

I'm trying to run a command on a remote server via SSH. I need the output of the command that …

c# ssh stdout ssh.net runcommand
Erlang read stdin write stdout

I'm trying to learn erlang through interviewstreet. I just learning the language now so I know almost nothing. I was …

erlang stdout stdin getline
Redirecting stdout/stderr to multiple files

I was wondering how to redirect stderr to multiple outputs. I tried it with this script, but I couldn't get …

bash unix stdout stderr
Redirecting stdout to file after a fork()

I'm working on a simple shell, but right now I am just trying to understand redirection. I'm just hard coding …

file fork redirect stdout dup2
python print function in real time

I recently switched OS and am using a newer Python (2.7). On my old system, I used to be able to …

python printing stdout flush
How can I redirect the stdout of IronPython in C#?

I have the following: public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button3_Click(object sender, EventArgs e) { …

c# redirect ironpython stdout
How to control QuickFix printouts

I'm using QuickFix with Python bindings. How is it possible to control QuickFix's printouts? As far as I can tell, …

logging stdout quickfix
Pipe to multiple files, but not stdout

I want to pipe stdout to multiple files, but keep stdout itself quiet. tee is close but it prints to …

bash stdout tee
How to capture a Processes STDOUT and STDERR line by line as they occur, during process operation. (C#)

I am going to execute a Process (lame.exe) to encode a WAV file to MP3. I want to process …

c# process stdout stderr
capture process stdout and stderr in the correct ordering

I launch a process from C# as follows: public bool Execute() { ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.Arguments = "the command"; startInfo.…

c# multithreading stdout stderr