Top "Stdout" questions

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

pass stdout as file name for command line util?

I'm working with a command line utility that requires passing the name of a file to write output to, e.…

linux bash file-io stdout pipe
How to overwrite stdout in C

In most modern shells, you can hit the up and down arrows and it will put, at the prompt, previous …

c terminal console stdout
How to write CSV output to stdout?

I know I can write a CSV file with something like: with open('some.csv', 'w', newline='') as f: …

python python-3.x stdout
How to redirect the output of system() to a file?

In this C program #include <stdio.h> #include <fcntl.h> int main() { int file = open("Result", …

c linux system stdout dup
How do I see stdout when running Django tests?

When I run tests with ./manage.py test, whatever I send to the standard output through print doesn't show. When …

python django debugging testing stdout
Python read from subprocess stdout and stderr separately while preserving order

I have a python subprocess that I'm trying to read output and error streams from. Currently I have it working, …

python subprocess stdout stderr
Standard input and output units in Fortran 90?

How can I read and write to the standard input, output and error streams stdin, stdout and stderr in Fortran? …

fortran stdout stdin stderr fortran90
IOError Input/Output Error When Printing

I have inherited some code which is periodically (randomly) failing due to an Input/Output error being raised during a …

python io stdout ioerror
Update Command-line Output, i.e. for Progress

I'd like to be able to show a progress meter in a simple PHP script on the command line. Instead …

php command-line stdout autoflush
PHP: How to use monolog to log to console (php://out)?

I just switched to monolog and wanted to log my message to the PHP console instead of a file. This …

php console stdout monolog