Tagged Questions

The standard error output stream (stderr) is typically used by a program to output error messages or diagnostics.

learn more… | top users | synonyms

39
votes
4answers
12k views

how to print to stderr in python?

I have come across at least three ways to do this: print >> sys.stderr, 'spam' sys.stderr.write('spam\n') from __future__ import print_function print('spam', file=sys.stderr) It seems ...
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 ...
26
votes
5answers
24k views

Redirecting StdErr to a Variable in a Bash Script

Let's say I have a script like the following: useless.sh echo "This Is Error" 1>&2 echo "This Is Output" And I have another shell script: alsoUseless.sh ./useless.sh | sed ...
14
votes
2answers
9k views

How to capture stderr on Windows/DOS?

I want to capture the errors from a script into a file instead of to the screen. In *nix, this is done with stderr redirection, usually echo "Error" 2> errorfile.log How do I do it in CMD ...
10
votes
3answers
1k views

How do I temporarily redirect stderr in Ruby?

I'd like to temporarily redirect stderr in a Ruby script for the duration of a block, ensuring that I reset it to its original value at the end of the block. I had trouble finding how to do this in ...
10
votes
3answers
2k views

With bash, how can I pipe standard error into another process?

It's well known how to pipe the standard ouput of a process into another processes standard input: proc1 | proc2 But what if I want to send the standard error of proc1 to proc2 and leave the ...
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
3answers
18k views

Python's print vs stderr

Are there any specific advantages or disadvantages to either?
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
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 ...
7
votes
3answers
311 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
5answers
340 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
7answers
2k views

What's wrong with using System.err in Java?

I'm using the Enerjy (http://www.enerjy.com/) static code analyzer tool on my Java code. It tells me that the following line: System.err.println("Ignored that database"); is bad because it uses ...
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
6answers
957 views

Can I capture stdout/stderr separately and maintain original order?

I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red. In order to accomplish this I create a ...
6
votes
5answers
202 views

'app --help' should go to stdout or stderr?

I think stdout, so you can easily grep, what do you think?
6
votes
6answers
3k views

Where does java stderr go?

I would like to know, where does java stderr standardly go? I know I can change the stderr using System.setErr, which 'Reassigns the "standard" error output stream.', but I dont know, which one is ...
5
votes
2answers
299 views

Python multiprocessing: How can I RELIABLY redirect stdout from a child process?

NB. I have seen Log output of multiprocessing.Process - unfortunately, it doesn't answer this question. I am creating a child process (on windows) via multiprocessing. I want all of the child ...
5
votes
3answers
393 views

Python: Temporarily Redirect stdout/stderr

Is it possible to temporarily redirect stdout/stderr in Python (i.e. for the duration of a method)? Edit: The problem with the current solutions (which I at first remembered but then forgot) is that ...
5
votes
3answers
170 views

Side effects of redefining $stdout and $stderr in a Rails app

I'd like to temporarily redirect $stdout and $stderr to a file in a script that will be run by script/runner in a Rails app. Are there any potential side effects to doing so? Will changing the global ...
5
votes
2answers
366 views

Change standard error to standard output

I have a PowerShell script that writes to the error output. The script can be as simple as the following: Write-Error 'foo' Start-Sleep -s 5 Write-Error 'bar' The script I actually call spawns an ...
5
votes
1answer
526 views

Python monitoring stderr and stdout of a subprocess

I trying to start a program (HandBreakCLI) as a subprocess or thread from within python 2.7. I have gotten as far as starting it, but I can't figure out how to monitor it's stderr and stdout. The ...
5
votes
3answers
322 views

Why is STDERR redirected to STDOUT

I noticed that we have mainly 3 file streams. They are STDIN, STDOUT and STDERR.. My question is why is STDERR redirected to STDOUT?
5
votes
4answers
3k views

Bash script - store stderr in variable

I'm writing a script to backup a database. I have the following line: mysqldump --user=$dbuser --password=$dbpswd \ --host=$host $mysqldb | gzip > $filename I want to assign the stderr to a ...
5
votes
2answers
719 views

Delphi - Capture stdout and stderr output from statically linked MSVC++ compiled DLL

I have been trying to capture stdout and stderr output from a DLL compiled in MSVC++ that my Delphi app statically links to, but so far have been unsuccessful. procedure Test; var fs: TFileStream; ...
5
votes
5answers
903 views

Why can't my Java program read Perl's STDERR?

We have a Perl program to validate XML which is invoked from a Java program. It is not able to write to standard error and hanging in the print location. Perl is writing to STDERR and a java program ...
4
votes
2answers
140 views

stdout to file1, stderr to file2, both correctly interleaved to stdout and file

Given a third-party program, how would one simultaneously: write stdout to z.stdout write stderr to z.stderr pass exit codes appropriately write both in correct interleaved order to stdout Here's ...
4
votes
4answers
331 views

Merging a Python script's subprocess' stdout and stderr while keeping them distinguishable

I would like to direct a python script's subprocess' stdout and stdin into the same file. What I don't know is how to make the lines from the two sources distinguishable? (For example prefix the lines ...
4
votes
2answers
344 views

Processing messages from a child process thorough stderr and stdout with Python

My python code spawns the child process, and it prints out messages both stdout and stderr. I need to print them differently. I have the following code to spawn child process and get the stdout ...
4
votes
4answers
1k views

How to redirect STDOUT and STDERR to a variable

I want to redirect STDERR and STDOUT to a variable. I did this. close(STDOUT); close(STDERR); my $out; open(STDOUT, ">>", \$out); open(STDERR, ">>", \$out); for(1..10) { print ...
4
votes
4answers
313 views

How do I execute an external script while capturing both output and exit code in Perl?

I'm trying to check for an SVN tag existence from a Perl script. So I try calling svn info $url, read exit code and suppress standard output and standard error streams. However, I struggle to do this ...
4
votes
3answers
2k views

How to redirect stdout stderr in an ant script?

I am triggering an ant script (via cruise control), and would like to be able to dump the std out and std err for a particular ant target to a plain text file. Yes, I am aware that cruise control ...
4
votes
2answers
3k views

Redirect stdout+stderr on a C# Windows service

I've written a Windows service in C# using the ServiceBase helper. During its execution some procedures on an external native DLL are called. Annoyingly, those procedures write to stdout and/or stderr ...
4
votes
1answer
590 views

Check whether stderr is a pipe in bash

I have a bash script that prompts the user for input with 'read'. If stdout or stderr is piped to something other than a terminal, I would like to suppress this step. Is that possible?
4
votes
2answers
1k views

How do you print to stderr in R?

How do you print to stderr in R? This would especially useful for scripts written in Rscript.
4
votes
5answers
1k views

Is it possible to disable stderr in C++?

I wrote a program for linux using libxml2 for html parsing. Although it does its job, the html parser writes lots of various errors to stderr. Is it possible to disable stderr at all (or redirect it ...
4
votes
2answers
318 views

How to tell if stderr is directing output to a file?

Is there a way I can tell whether stderr is outputting to a file or the terminal within a C/C++ program? I need to output different error message depending on whether the program is invoked as: ...
3
votes
3answers
66 views

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 to run in bash is redirected to somewhere. So, I got following questions How to detect: 1) ...
3
votes
3answers
70 views

Python `print` passing extra text to sys.stdout?

This is probably something stupid I am missing but it has really got me hung up on a larger project (c extension) that I am writing. Why is print "Hello, World!" passing None and an extra \n to ...
3
votes
2answers
113 views

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 it to work quite right. The first file should have both stdout and stderr, and the 2nd ...
3
votes
1answer
117 views

How can I catch a “failed to decode JSON” error message in Perl?

So I am trying to load test a REST API which returns a JSON value. To do that I am creating multiple instances of the perl script. The Perl script basically calls that URL, and tries to decode_json. ...
3
votes
3answers
91 views

How to Return a Pretty Zero Value with the Count Property from Get-Process?

Compare the three scripts below: Sample 1 $a = GPS | Where {$_.ProcessName -Match 'AcroRd32'} $a $a.Count If ($a.Count -Eq 0) { Echo "Adobe Reader is Off" } Else { Echo "Adobe Reader is On" ...
3
votes
3answers
129 views

what if tail fails while reading from pipe

distinguish stdout from stderr on pipe So, related to the link above, I have a child who is executing tail and parent is reading its out put via a pipe. dup2(pipefd[1], STDOUT_FILENO); ...
3
votes
1answer
66 views

Capturing and mailing bash script errors

I have a script that I run nightly in cron to backup some postgres databases for several hosts on my network. I have a way of getting alerted that the script fails by leveraging the exit status, but ...
3
votes
1answer
701 views

Pyramid logging

I have a pyramid application and I want the logs to got to stderr and stdout. stdout should be "INFO" level and below. stderr should be "WARN" and higher. How would I change my .ini file to do this? ...
3
votes
7answers
333 views

How can I get rid of the STDERR in Perl

I'm using some system commands in Perl. In the below case I was getting output as follows: ls: import-log.*: No such file or directory ls: error-log.*: No such file or directory No specified ...
3
votes
2answers
2k views

Python - get output from a command line program which exits with nonzero exit codes

Using Python 2.7.1 on a Windows Server 2008 R2 x64 box, I'm trying to get the output of a command line tool which gives nonzero exit statuses quite often after outputting information I need. ...
3
votes
2answers
555 views

How can I redirect R warning messages to STDOUT?

I'm using a grid engine to run R scripts. The STDERR is taken seriously under this setup, so I would like to keep it clean and have only real/serious/fatal errors printed to STDERR. The problem is my ...

1 2 3 4 5