Top "Stdout" questions

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

How to have an in-place string that updates on stdout

I want to output to stdout and have the output "overwrite" the previous output. For example; if I output On 1/10, …

go stdout
Redirect stdout and stderr from inside a batch file

Is there a way to redirect stdout and stderr for a batch file from inside it. I'm imagining something like …

batch-file stdout stderr
Suppress stdout / stderr print from Python functions

I have a Python script that is using some closed-box Python functions (i.e. I can't edit these functions) provided …

python stdout
Using files as stdin and stdout for subprocess

How do I replicate the following batch command using python subprocess module? myprogram < myinput.in > myoutput.out In …

python subprocess stdout stdin
Intercepting stdout of a subprocess while it is running

If this is my subprocess: import time, sys for i in range(200): sys.stdout.write( 'reading %i\n'%i ) time.…

python process subprocess stdout popen
java difference StdOut vs System.out.println

I have just started working on java, As i downloaded the eclipse and created a java project. Project was working …

java eclipse stdout system.out
How to write stdout to file with colors?

A lot of times (not always) the stdout is displayed in colors. Normally I keep every output log in a …

linux bash terminal stdout
Gradle: How to get output from test STDERR/STDOUT into console?

(Gradle 3.2.1) I run some java tests, which logs output in Stderr/Stdout. I can see that output, if I start …

testing gradle stdout stderr
In Java, how can I redirect System.out to null then back to stdout again?

I've tried to temporarily redirect System.out to /dev/null using the following code but it doesn't work. System.out.…

java stdout iostream
C: how to redirect stderr from System-command to stdout or file?

The shell command $ avrdude -c usbtiny outputs text to stderr. I cannot read it with commmands such as head-less-more cos …

c stdout stderr file-descriptor