Tagged Questions

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

learn more… | top users | synonyms

43
votes
9answers
23k views

Python output buffering

Is output buffering enabled by default in Python's interpreter for sys.stdout ? If the answer is positive, what are all the ways to disable it ? Suggestions so far: Use the -u command line switch ...
34
votes
4answers
8k views

Setting the correct encoding when piping stdout in python

When piping the output of a python program, the python interpreter gets confused about encoding and sets it to None. This means a program like this: # -*- coding: utf-8 -*- print "åäö" will work ...
30
votes
2answers
6k views

How to pipe stderr, and not stdout?

I have a problem that writes information to stdout and stderr, and I need to grep through what's coming to stderr, while disregarding stdout. I can of course do it in 2 steps: command > /dev/null ...
27
votes
6answers
2k views

Why is printing to stdout so slow? Can it be sped up?

I've always been amazed/frustrated with how long it takes to simply output to the terminal with a print statement. After some recent painfully slow logging I decided to look into it and was quite ...
26
votes
5answers
21k views

How do you capture stderr, stdout, and the exit code all at once, in Perl?

Is it possible to run an external process from Perl, capture its stderr, stdout AND the process exit code? I seem to be able to do combinations of these, e.g. use backticks to get stdout, IPC::Open3 ...
18
votes
7answers
9k views

How can I redirect stdout to some visible display in a Windows Application?

I have access to a third party library that does "good stuff." It issues status and progress messages to stdout. In a Console application I can see these messages just fine. In a Windows ...
17
votes
1answer
2k views

Opening a TStream on stdin/stdout in a Delphi console app

I'm trying to write a Delphi console application that creates a TStream for its standard input, and another TStream for its standard output. (It will be launched by a host app with its input and ...
15
votes
3answers
9k views

Can I redirect the stdout in python into some sort of string buffer?

I'm using python's ftplib to write a small FTP client, but some of the functions in the package don't return string output, but print to stdout. I want to redirect stdout to an object which I'll be ...
15
votes
5answers
17k views

How to redirect the output of a PowerShell to a file during its execution

I have a Powershell script for which I would like to redirect the output to a file. The problem is that I cannot change the way this script is called. So I cannot do: .\MyScript.ps1 > output.txt ...
15
votes
8answers
3k views

How do I get 'real-time' information back from a subprocess.Popen in python (2.5)

I'd like to use the subprocess module in the following way: create a new process that potentially takes a long time to execute. capture stdout (or stderr, or potentially both, either together or ...
14
votes
8answers
5k views

How to overwrite stdout in C

Not sure if this is phrased well or not... In most modern shells, you can hit the up and down arrows and it will put, at the prompt, previous commands that you have executed. My question is, how ...
12
votes
4answers
4k views

Python - The difference between sys.stdout.write and print

My question is whether or not there are situations in which sys.stdout.write() is preferable to print. Such as it having better performance or resulting in code that makes more sense.
11
votes
3answers
9k views

How can I redirect STDERR to STDOUT, but ignore the original STDOUT?

I have a program whose STDERR output I want to inspect and run grep on etc. So I could redirect it to STDOUT and use grep, but the problem is, I do not want the original STDOUT content. So, this one ...
11
votes
5answers
7k views

How can a process intercept stdout and stderr of another process on Linux? [closed]

I have some scripts that ought to have stopped running but hang around for ever. Is there some way I can figure out what they're writing to stdout and stderr in a readable way ? I tried, for ...
10
votes
5answers
3k views

C++ alignment when printing cout <<

Is there a way to align text when priting using cout? I'm using tabs, but when the words are too big they won't be aligned anymore Sales Report for September 15, 2010 Artist Title Price Genre ...
10
votes
6answers
2k views

Force another program's standard output to be unbuffered using Python

A python script is controlling an external application on Linux, passing in input via a pipe to the external applications stdin, and reading output via a pipe from the external applications stdout. ...
10
votes
3answers
6k views

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 a zombie around, I shut down STDIN,STDOUT, and STDERR: open STDIN, '/dev/null' or die "Can't read ...
10
votes
5answers
14k views

log4j redirect stdout to DailyRollingFileAppender

I have a java app that uses log4j. Config: log4j.rootLogger=info, file log4j.appender.file=org.apache.log4j.DailyRollingFileAppender log4j.appender.file.File=${user.home}/logs/app.log ...
9
votes
3answers
300 views

Undo a newline (\n) printed to command line

printf("Error %d\n", 1); printf("\nStatus: %d%%", 50); prints Error 1 Status: 50% In this set up, is there any chance to insert Error 2\n between Error 1\n and \nStatus: 50%. I understand that ...
9
votes
10answers
7k views

Shell/Bash Command to get nth line of STDOUT

Is there any bash command that will let you get the nth line of STDOUT? That is to say, something that would take this $ ls -l -rw-r--r--@ 1 root wheel my.txt -rw-r--r--@ 1 root wheel files.txt ...
8
votes
2answers
1k views

How could I temporary redirect stdout to a file in a C program?

Within my C program I'd like to temporarly redirect STDOUT to "/dev/null" (for example). Then after writing to "/dev/null" I'd like to restore STDOUT. How do I manage this?
8
votes
4answers
577 views

confused about stdin, stdout and stderr?

I am rather confused with the purpose of these three files. If my understanding is correct, stdin is the file in which a program writes into its requests to run a task in the process. stdout is the ...
8
votes
3answers
3k views

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?
8
votes
5answers
1k views

How to replicate tee behavior in python when using subprocess?

I'm looking for a Python solution that will allow me to save the output of a command in a file without hiding it from the console. FYI: I'm asking about tee (as the Unix command line utility) and not ...
8
votes
2answers
2k views

Python 2.x - Write binary output to stdout?

Is there any way to write binary output to sys.stdout in Python 2.x? In Python 3.x, you can just use sys.stdout.buffer (or detach stdout, etc...), but I haven't been able to find any solutions for ...
8
votes
2answers
3k views

Error when redirecting stdout and stderr of powershell script

The script runs fine when stdout/stderr are not redirected. When I add both stderr and stdout redirection, I getg the following error: How can I avoid it? % Total % Received % Xferd Average ...
8
votes
9answers
2k views

Java: What's the reason behind System.out.println() being that slow?

For small logical programs that can be done in a text editor, for tracing I use the classic System.out.println(). I guess you all know how frustrating it is to use that in a block of high number of ...
7
votes
3answers
316 views

Ruby $stdout vs. STDOUT

In Ruby, what is the difference between $stdout (preceded by a dollar sign) and STDOUT (in all caps)? When doing output redirection, which should be used and why? The same goes for $stderr and STDERR. ...
7
votes
2answers
426 views

How do I detect if stdout is connected to a tty in Perl?

I'm looking for the Perl equivalent to this Python code: from sys import stdout if stdout.isatty(): print "yes" else: print "no"
7
votes
3answers
563 views

log-back and thirdparty writing to stdout. How to stop them getting interleaved

First some background. I have a batch-type java process run from a DOS batch script. All the java logging goes to stdout, and the batch script redirects the stdout to a file. (This is good for me ...
7
votes
5answers
341 views

Should the command line “usage” be printed on stdout or stderr?

When printing the "usage" of an application, should it be done on stdout or on stderr? Depending on the application I've seen several cases, but there doesn't seem to be one rule. Maybe I'm mistaken ...
7
votes
5answers
5k views

Run Java class file from PHP script on a website

I have a website and want to be able to allow the user to run a Java file on the server from the website. I want the user to click a button which will run the Java file on the server AND anything ...
7
votes
3answers
1k views

Is there a buffer size attached to stdout?

I am trying to find some information on data limits related to stdout on Windows. I can't seem to find the information on MSDN. Is there a limit to how much data can be written to stdout? If so, ...
7
votes
9answers
1k views

printf slows down my program

I have a small C program to calculate hashes (for hash tables). The code looks quite clean I hope, but there's something unrelated to it that's bugging me. I can easily generate about one million ...
7
votes
3answers
6k views

Redirect both cout and stdout to a string in C++ for Unit Testing

I'm working on getting some legacy code under unit tests and sometimes the only way to sense an existing program behavior is from the console output. I see lots of examples online for how to redirect ...
7
votes
4answers
5k views

Continuously read from STDOUT of external process in Ruby

I want to run blender from the command line through a ruby script, which will then process the output given by blender line by line to update a progress bar in a GUI. It's not really important that ...
7
votes
2answers
6k views

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.sleep(.02) And this is the script controlling and modifying the output of the ...
7
votes
4answers
4k views

python 3.0, how to make print() output unicode?

I'm working in WinXP 5.1.2600, writing a Python application involving Chinese pinyin, which has involved me in endless Unicode problems. Switching to Python 3.0 has solved many of them. But the ...
6
votes
3answers
100 views

What is this Bash (and/or other shell?) construct called?

What is the construct in bash called where you can take wrap a command that outputs to stdout, such that the output itself is treated like a stream? In case I'm not describing that so well, maybe an ...
6
votes
2answers
267 views

Does any web browser allow writing to stdout?

I plan to write a Hashify command line client, and I'd like to confirm that simply writing to stdout is not an option before getting creative. (Ideally the command will behave like TextMate's mate, ...
6
votes
2answers
352 views

Why is standard output from subprocess (redirected to unbuffered file) being buffered?

From http://docs.python.org/library/functions.html#open The optional bufsize argument specifies the file’s desired buffer size: 0 means unbuffered, 1 means line buffered, any other positive ...
6
votes
3answers
445 views

What is the difference between writing to STDOUT and a filehandle opened to “/dev/tty”?

What are the differences between this two examples? #!/usr/bin/perl use warnings; use 5.012; my $str = "\x{263a}"; open my $tty, '>:encoding(utf8)', '/dev/tty' or die $!; say $tty $str; close ...
6
votes
4answers
602 views

Read another process' stdout in C++

In Windows, is there a way to launch a process in C++ and then read what it spat out into stdout when it's done? The process must be run using elevated privileges (on Vista or later) if necessary. ...
6
votes
1answer
154 views

Linux/Perl: Additional output buffers other than STDOUT and STDERR?

Out of curiosity, is it possible to create, instantiate, or otherwise access additional output buffers besides STDOUT and STDERR from within a Perl script? The use case would be additional outputs to ...
6
votes
3answers
411 views

How can I suppress the line numbers output using R CMD BATCH?

If I have an R script: print("hi") commandArgs() And I run it using: r CMD BATCH --slave --no-timing test.r output.txt The output will contain: [1] "hi" [1] ...
6
votes
3answers
695 views

How can I run an external command and capture its output in Perl?

I'm new to Perl and want to know of a way to run an external command (call it prg) in the following scenarios: Run prg, get its stdout only. Run prg, get its stderr only. Run prg, get its stdout and ...
6
votes
3answers
432 views

Seeking STDOUT in PHP

I have a php script that is running in CLI and I want to display the current percent progress so I was wondering if it is possible to update the STDOUT to display the new percent. When I use rewind() ...
6
votes
7answers
860 views

erasing terminal output on linux

I was writing a command line program which will have a status bar, much like wget. The main problem I'm facing is: how do I delete what I've already sent into stdout/stderr? I had on idea: use the ...
6
votes
3answers
467 views

Determine whether process output is being redirected in C/C++

I'm writing command line utility for Linux. If the output (stdout) is going to a shell it would be nice to print some escapes to colorize output. But if the output is being redirected those bash ...
6
votes
3answers
533 views

How do I close the stdout-pipe when killing a process started with python subprocess Popen?

I wonder if it is possible to shut down the communication pipe when killing a subprocess started in a different thread. If I do not call communicate() then kill() will work as expected, terminating ...

1 2 3 4 5 13