Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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. ...
6
votes
4answers
290 views

“Turn off” the output stream

I'm using a wayward library that, unfortunately, prints information to System.out (or occasionally System.err). What's the simplest way to prevent this? I've been thinking about creating an output ...
4
votes
4answers
101 views

Why and how do we redirect debug statements?

I want to know why is it preferred to redirect the debug statements to stderr like it is done here: #ifdef DEBUG_TEST #define DEBUG_TEST 1 #else #define DEBUG_TEST 0 #endif #define ...
2
votes
1answer
206 views

(batch) How to apply the output redirection to the last program of a line?

I have a line, in a batch script, from which I would like to capture the output. I would like to redirect it to a file. My problem is that there are 3 programs in that line, each calling the next. ...
2
votes
2answers
346 views

How can I output Handbrake output to both the screen and to a file?

So I've been using Handbrake command line to encode my video collection to store on my NAS so I can use it on my HTPC. I was looking for a way to output both to the screen so I can watch it's output ...
2
votes
1answer
146 views

Why do some cmd launched processes block/buffer output when the output is redirected?

Why do some processes started at the command line on my Windows machine block/buffer their entire output if it is redirected and others not? Example: tracert does not block/buffer output as it is ...
1
vote
2answers
48 views

C#, Processes output sometimes doesn't get captured (inconsistency)?

The program I made throws off threads which start executables through processes. Each thread runs the method below which starts the process and redirects the processes' output into a string ...
1
vote
3answers
116 views

bash output redirect prob

I want to count the number of lines output from a command in a bash script. i.e. COUNT=ls | wc -l But I also want the script to output the original output from ls. How to get this done? (My actual ...
1
vote
2answers
196 views

Execution output to text file

I am writing a C program using Visual Studio 2008. I use F7 to compile and F5 to execute the program.When I press F5 an execution window contains the output. But I want the output to get saved to a ...
1
vote
3answers
1k views

Can't redirect PowerShell output when -EncodedCommand used

For my tests I am using 'Start > Run' dialog (not the cmd.exe). This works fine, and I get 9 in log.txt powershell -Command 4+5 > c:\log.txt But this does not work: powershell -EncodedCommand ...
0
votes
1answer
177 views

Problem redirecting stdout in Ruby script

I have the following test Ruby script: require 'tempfile' tempfile = Tempfile.new 'test' $stderr.reopen tempfile $stdout.reopen tempfile puts 'test stdout' warn 'test stderr' `mail -s 'test' ...
0
votes
1answer
525 views

Linux cron job to email output from a command

I would like to run a cron job to backup some mysql databases by piping the output to a file and then emailing it. Will the following work? 15 2 * * * root mysqldump -u root -pPASSWORD ...
0
votes
3answers
254 views

Output redirection doesn't work for a certain program

On Linux, I'm trying to redirect stdout from a console application to a file instead of console. I do not have the source code. I tried several methods but all resulted in an empty file. Without ...
0
votes
6answers
1k views

Batch output redirection when using start command for GUI app

This is the scenario: We have a Python script that starts a Windows batch file and redirects its output to a file. Afterwards it reads the file and then tries to delete it: os.system(C:\batch.bat ...
0
votes
2answers
2k views

C# : Redirect console application output : How to flush the output?

I am spawning external console application and use async output redirect. as shown in this SO post My problem is it seems that the spawned process needs to produce certain amount of output before I ...