Top "Stdout" questions

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

How do I redirect stderr and stdout to file for a Ruby script?

How do I redirect stderr and stdout to file for a Ruby script?

ruby redirect stdout stderr
Rewinding std::cout to go back to the beginning of a line

I'm writing a command-line tool for Mac OS X that processes a bunch of files. I would like to show …

c++ macos terminal stdout output-formatting
Capturing output from WshShell.Exec using Windows Script Host

I wrote the following two functions, and call the second ("callAndWait") from JavaScript running inside Windows Script Host. My overall …

stdout javascript wsh
Suppressing output in python subprocess call

For the following command: subprocess.call(shlex.split( """/usr/local/itms/bin/iTMSTransporter -m lookupMetadata -apple_id %s -destination %s"""%(…

python subprocess stdout
How can I print to console while the program is running in python?

Possible Duplicate: How to flush output of Python print? I have have an algorithm that I'm running that takes a …

python console stdout wing-ide
How to reroute stdout, stderr back to /dev/tty

I just ssh-ed to some remote server and found that stdout and stderr of all commands/processes I am trying …

linux bash stdout stderr tty
How to Pipe Output to a File When Running as a Systemd Service?

I'm having trouble piping the STDOUT & STDERR to a file when running a program as a systemd service. I've …

linux stdout fedora systemd stderr
Read stdin stream in a batch file

Is it possible to use a piped stdin stream inside a batch file? I want to be able to redirect …

windows batch-file stdout stdin
Making curl send errors to stderr and everything else to stdout

Is there a way to tell curl to output errors to stderr, and everything else to stdout? The reason is …

curl stdout stderr
How to buffer stdout in memory and write it from a dedicated thread

I have a C application with many worker threads. It is essential that these do not block so where the …

c file stdout buffering