The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
11 views

Is there a way to view the console of CruiseControl.NET remotely?

Is there a way to remotely view the terminal output of CruiseControl.NET remotely? At present, I am running the following command using an instance of Git Bash on the terminal log file located over a ...
0
votes
2answers
114 views

Returning data from .Net EXE to Powershell

I have a powershell script that calls an executable to do some data crunching and the script needs to retrieve the results from by the executable file. Wondering what options I have on plate for this ...
1
vote
1answer
76 views

Appending subprocess output to file from Python script

I have a python script which loops through some data and calls a subprocess each time, passing the data in as part of the process's arguments. I want to append the output of each call to a file so I ...
0
votes
2answers
175 views

filesize output redirect in batch

I'm trying to create a batch file to go through a folder and output all of the file sizes of each file in the specified folder to a .txt So far I have the following: @echo off setlocal set size= FOR ...
2
votes
1answer
143 views

How to span child process with administrative privileges from parent process with administrate privileges in C#?

How to spawn child process with administrative privileges without using verb=runas? The parent process has administrative privileges. And I would like to put output (not just plain text, but ...
0
votes
2answers
2k views

VBScript to Notepad/Wordpad

I'd like to write output from VBScript to notepad/wordpad in realtime. What's the best way to do this? I'm aware of sendkeys, but it requires that I parse the input for special commands.
4
votes
4answers
305 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 ...
1
vote
2answers
110 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 ...
0
votes
1answer
711 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' ...
27
votes
2answers
6k views

What is the difference between Ruby's $stdout and 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. ...
1
vote
3answers
245 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 ...
0
votes
2answers
3k 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 ...
3
votes
3answers
1k 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 ...
2
votes
1answer
678 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. ...
7
votes
4answers
837 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 ...
3
votes
4answers
2k views

tcl command redirect to a variable, tcl version is 8.4

I want to redirect the output of 1 command to a variable, where the OUTPUT is usually to STDOUT. I am running an EDA tool, which has tcl interpeter & it's own commands. Let's say that the tool has ...
2
votes
2answers
1k 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 ...
1
vote
2answers
779 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 ...
3
votes
1answer
272 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 ...
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
3answers
4k 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 ...
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 ...