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

learn more… | top users | synonyms

3
votes
3answers
62 views

perl open(HANDLE, “-|”, $cmd, @args) : how to read stderr?

i want to read the output of a command including the stderr into HANDLE: open(HANDLE, "-|", $cmd, @args); but the above command just reads the stdin? how can i also read the stderr?
1
vote
1answer
40 views

python log stderr and stdout to a file [duplicate]

Just wanted to pick your brains on this. I have several subprocesses running and I wanted to print the stderr and stdout to a file. I've done this so far: def write_to_stderr_log(process): ...
0
votes
1answer
22 views

Redirecting STDERR and STDOUT in a DOSKEY macro

I am trying to define a DOSKEY macro that redirects both STDOUT and STDERR output to a file. The doskey will be set by running a batch file. I can do this for STDOUT only with the following: doskey ...
1
vote
1answer
31 views

When groovy calls bash, debug mode “-x” is not visible in the standard output

We're using groovy to execute a bash script that has debug mode set -x in it. We're running it like so: def proc = "bash hello.sh".execute() proc.in.eachLine { line -> println line } ...
0
votes
0answers
12 views

Redirecting standard output and standard error to somewhere on an Excel workbook

I have a process written in VBScript that writes to the standard output and standard error streams. It has a fairly elaborate command line interface and I provide (following persuasion by colleagues) ...
0
votes
1answer
23 views

Log STDOUT and STDERR with SLF4J, but run as a daemon

I found this earlier today and it solved an issue I had very nicely: Redirect System.out and System.err to slf4j However, it resulted in another issue: to make this work, I couldn't close stdout and ...
0
votes
1answer
32 views

Python subprocess stderr redirection, redirect warnings, still raise on control flow stoppers?

I did basic due diligence and couldn't find a good answer to this anywhere. I want to call subprocess.Popen in a way that they will still raise a Python exception when control flow is interrupted, ...
1
vote
2answers
41 views

Use stderr in lua io.popen to determine faulty function call

I'm making a function that can read the metadata of the current song playing in spotify. This is being programmed in lua since it is an implementation for awesome wm. I got the following line to get ...
0
votes
1answer
21 views

How to read executables stdout stderr from Java code?

AFAIK, one can run a command line executable from Java using Runtime. And even get error code with processes WaitFor(). But how can I read executables output? Both stdout and stderr?
0
votes
0answers
32 views

Nose/unittest – how write result in separate streams?

Guys, I need your help. I have problem - unittest/nose sent result in one stream, but I want to split stdout and stderr streams. TextTestRunner - is test runner class that displays results in ...
1
vote
2answers
112 views

Linux (Bash): Redirect all output to file

I am trying to redirect all output from a command line programme to a file. I am using Bash. Some of the output is directed to a the file, but some still appears in the terminal and is not stored to ...
0
votes
2answers
44 views

Perl module Image::EXIF causes error message

I like to understand why this perl module is always creating this error message: In my script I do many things with the exif information of some pictures, that works fine. Here my minimized script: ...
4
votes
1answer
60 views

is there a way to distinguish stderr in console output?

That is display both streams on console but distinguish somehow one from another. Normally is that I don't know which lines are stderr they are mixed with normal output. If I redirect it to a file ...
0
votes
2answers
41 views

is there a way to pipe STDERR and STDOUT to different programs?

For example I need to set two tee commands in such way that one will be reading from STDOUT and second from STDERR and both redirecting the console output to different files. Is such thing possible in ...
-1
votes
1answer
68 views

Python Catching Popen Output

I'm experiencing some strange behavior with my Python script exiting without any error messages. Based on my debugging it is happening around a popen() call to scp a file to a server. The code was (I ...
0
votes
1answer
20 views

posix shell: stdout to file, exitcode to a variable and last line of stderr to another variable

I implemented the following in POSIX shell (not bash): fail.sh: #!/bin/sh echo something useful echo warning 1 >&2 echo warning 2 >&2 echo an error message >&2 exit 100 The ...
6
votes
3answers
108 views

Is there a way to capture a subroutine's print output to a variable so I can send it to stderr instead?

Suppose we have: sub test { print "testing\n"; } If there is a case where I want to have it print to stderr instead of stdout, is there a way I can call the subroutine to do this? Or can I ...
0
votes
3answers
52 views

Catch errors on stdin, stdout, stderr

I was writing a bit C99 code reading from stdin: // [...] fgets(buf, sizeof(buf), stdin); // [...] But I am wondering if I should catch errors in this case, since the shell could redirect stdin to ...
0
votes
3answers
56 views

Redirect “Cant't locate xxx.pm in @INC” message to file

#!/usr/bin/perl use Foo.pm # no such file Then run by cron, script falls with message "Can't locate Foo.pm in @INC". It is true. But I can't see this message (server and cron record out of my ...
1
vote
0answers
38 views

How can I write web browser Javascript console output and stack traces to stdout & stderr?

I am currently using Chromium for my Javascript web development, but I would be happy to get output to standard output from any web browser. My development environment, which is Emacs, is optimised ...
1
vote
1answer
44 views

Piping both stdout and stderr in bash?

It seems that newer versions of bash have the &> operator, which (if I understand correctly), redirects both stdout and stderr to a file (&>> appends to the file instead, as Adrian ...
2
votes
2answers
268 views

Powershell - redirect executable's stderr to file or variable but still have stdout go to console

I'm writing a script to download several repositories from GitHub. Here is the command to download a repo: git clone "$RepositoryUrl" "$localRepoDirectory" When I run this command it displays some ...
2
votes
2answers
89 views

Bash command substitution stdout+stderr redirect

Good day. I have a series of commands that I wanted to execute via a function so that I could get the exit code and perform console output accordingly. With that being said, I have two issues here: ...
2
votes
2answers
54 views

nslookup capture stderr in a variable and display

In a shell script I am running nslookup on number of URLs Sometimes some url returns cannot resolv error. I need to capture those errors in a variable. here is code for nslookup which gets ip ...
2
votes
1answer
31 views

Started Process error stream is empty

I'm trying to control external process from java code like this: String[] Args = { mPath, "\"" + filePath + "\"" }; ProcessBuilder pb = new ProcessBuilder(Args); mProcess = pb.start(); Then i want ...
0
votes
0answers
59 views

Catching STDOUT/STDERR from git

I'm trying to execute a git command from perl via IPC::Run which catches STDOUT/STDERR-Output from git in perl variables. Here is what i did: use strict; use warnings; use IPC::Run; my $stderr, ...
0
votes
1answer
64 views

mysqldump output to log4perl

I have a Perl script that uses log4perl to log everything to file. The config for log4perl is stored in an external file. This script runs the mysqldump command using qx. The output of the mysqldump ...
0
votes
1answer
53 views

stdout and stderr of parallel computation in R

I am using the package parallel to do computation. Here is a toy example: library(parallel) m = matrix(c(1,1,1,1,0.2,0.2,0.2,0.2), nrow=2) myFun = function(x) { if (any(x<0.5)) { write("less ...
2
votes
2answers
42 views

How to identify what is printing on screen in linux?

I'm using a library in my C++ application and trying to capture all the output in a file. I tried to redirect the stderr to stdout and then stdout to a file like so: ./a.out 2>&1 > out.txt ...
1
vote
2answers
72 views

storing logs/error message on C programming

When an error occurs, I would like my C code to store the error before exiting the program. Is it advised to store the stderr to a file (e.g., /home/logs.txt) or would it be advised to use a different ...
0
votes
0answers
162 views

Start-Stop-Daemon redirect stderr from PHP script

Okay, so I was looking around a lot and I don't get it. My question: How do I redirect the Output, from a PHP script, that is called by a python script that gets daemonized by start-stop-daemon into ...
0
votes
2answers
88 views

Python logging split between stdout and stderr [duplicate]

Is it possible to have python logging messages which are INFO or DEBUG to go to stdout and WARNING or greater to go to stderr?
1
vote
0answers
39 views

Can't see stderr when running via launchd

I am running a python program using launchd. In my plist file I have set it up to redirect stdout and stderr to files that I am closely monitoring. The stdout file is getting the output as expected, ...
0
votes
1answer
38 views

Bash eating stderr output

I'm calling a command line tool we wrote from bash on OS X and I have the problem that I don't get the stderr output but only printf's written to stdout. That's my call: echo "someInputString" ...
0
votes
1answer
50 views

How to pipe (in bash) standard output to a variable, and stderr to a command

I have a pipe like this: VAR=`command1 | command2 | etc...` And I would like that, if the pipe finishes succesfully, the output is saved in VAR, and otherwise, if the pipe fails in any point of the ...
2
votes
1answer
150 views

Redirect sterr to file but leave all output on screen intact (as_is). [windows XP - BAT files]

Pls, imagine that I have some program which has output in both main streams: err && out. As an example we can use next bat file: @echo off echo 1 echo 2 >&2 echo 3 echo 4 >&2 ...
0
votes
2answers
38 views

Getting stderr from mbuffer to a variable

When mbuffer finishes on the receiving side it prints the time and speed, which I would like to get into $time and $speed. Trying to implement this answer #!/bin/bash exec 3>&1 4>&2 ...
2
votes
1answer
39 views

removing stderr from windows command

2>&1 will take stderr and output it to stdout. 2>filename.txt will take stderr and dump it in filename.txt How do I just remove it all together? Like maybe to some sort of /dev/null equiv? ...
1
vote
3answers
97 views

In python, can I redirect the output of print function to stderr?

There're lots of print function (python 2.7) in my program. Is there any way I can add a few lines then all the output can be redirected to stderr? What I want is python codes but not linux pipeline. ...
1
vote
2answers
49 views

Why am I not seeing my stderr println after my stdout println?

public static void algorithmOne(int n){ long startTime = System.currentTimeMillis(); search: for (int possiblePrime = 2; possiblePrime <= n; possiblePrime++){ for ...
0
votes
3answers
110 views

Confused how stdin, stdout and stderr work

I have below program, void Print() { printf("\nCall from Print\n"); } int main() { FILE * pFile; char mystring [100]; pFile = freopen ("myfile.txt" , "r", stdin); if (pFile == ...
0
votes
1answer
272 views

Redirecting stdout and stderr in background process to files in powershell

I'm trying to redirect stdout to .\output\worker01.log and stderr to .\output\worker01-error.log. It works if i run the command in the shell: PS Q:\mles\etl-i_test> .\worker\bin\win32\php.exe -q ...
0
votes
1answer
52 views

Error from stderr - how to fix it?

I have a Python program (below) and when I run it I get the following error: % python SSH_Prog.py About to connect... stderr: ["bash: -c: line 0: unexpected EOF while looking for matching `''\n", ...
1
vote
1answer
137 views

matplotlib errorbar continous line plot

I've come across this interesting issue using errorbars with matplotlib. I have two lists: "iterations", which is a list of integer values ranging from 0 to 999; and "average", which is 1000 size list ...
0
votes
0answers
39 views

curl error handling in non-html transfer

I'm using http as a general-purpose transport protocol with no browser or HTML involvement; a file gets uploaded to a server from a command-line client tool, processed, and the output file is ...
0
votes
1answer
373 views

catch stderr and stdout in log4j before unix redirection

I'm using log4j in my application to log certain packages with a different log level. However, stderr and stdout do not seem to be captured in this logfile, and instead they are being printed in a ...
0
votes
1answer
40 views

STDERR of pg_dump in UTF-8

I am redirecting the stderr of pg_dump to file: pg_dump ...... 2>pg_dump.log but this file is ANSI-encoded. I would like to see it in UTF-8 or Unicode. Is this possible?
5
votes
1answer
105 views

Perl, warn not working after XML::Smart save

I realised there is a problem with warn after the use of XML::Smart save. #!/usr/bin/perl use strict; use warnings; use XML::Smart; my $XML = XML::Smart->new() ; print STDOUT "Before save: ...
-2
votes
2answers
124 views

Confused about stdin stdout stderr? [closed]

So I understand the meaning of the command such as 1>&2 or 2>&1 but my question is why do we use such commands? Redirecting the stdout to stderr or from stderr to stdout? Also for ...
0
votes
0answers
35 views

Hide system call output of a code that I don't own

I'm using a python API in order to retrieve data from a file. Unfortunately I don't own the code behind the API and the call to the method to get the data prints in the console. I tried to redirect ...

1 2 3 4 5 8