redirectstandardoutput Questions
2
I need to write a wrapper for an interactive command line program.
That means I need to be able to send commands to the other program via its standard input und receive the response via its standa...
Simmon asked 3/8, 2017 at 13:28
6
Solved
My application has many System.out.println() statements.
I want to catch messages from println and send them to the standard logger (Log4j, JUL etc).
How to do that ?
Passport asked 12/7, 2010 at 12:20
1
I use Python2.7 and I want the function: contextlib.redirect_stdout.
I mean, I want to redirect the output of specific function (not the all program).
The problem is - only Python3 supports "contex...
Whereof asked 28/5, 2017 at 10:22
1
Solved
I have a rule in my Makefile that roughly looks like this:
target_file: src_file
some_tool src_file > target_file
(Of course, in reality I'm using $@ and $<, but for this question I prefer a...
Toh asked 8/10, 2016 at 7:59
9
Solved
I have a program that frequently uses an external program and reads its outputs.
It works pretty well using your usual process redirect output, but one specific argument for some reason hangs...
Hades asked 23/8, 2011 at 11:19
1
Solved
I am writing an app to run ffmpeg using c#. My program redirects the standardError output to a stream so it can be parsed for progress information.
During testing I have found a problem:
If the ...
Faustino asked 21/4, 2016 at 3:10
1
Solved
I want to inspect line by line standard output from process. after reading the second line myProcess.StandardOutput.EndofStream change from false to true. Hence it quits from while loop. Maybe I sh...
Groovy asked 9/1, 2014 at 17:43
6
Solved
I have an app which calls another process in a command window and that process has updating stats that output to the console window. I thought this was a fairly simple operation but I can't seem to...
Inveigle asked 17/7, 2009 at 22:33
2
I would like to redirect the Process's standard output to a string for later parsing.
I would also like to see the output on the screen, while the process is running, and not only when it finishes ...
Hinduism asked 3/9, 2013 at 9:26
1
I'm piping the output of an app into my .NET app.
The encoding is somewhat strange.
Letters ÅÄÖ shows up as ├Ñ ├ñ ├Â
I have tried to convert back and forth from various different encodings w/o an...
Symmetrize asked 6/8, 2013 at 13:10
1
Solved
I ran into this problem today and it took me quite a while to figure it out. I was starting a process from within IIS, redirecting it's standard output and error output so when the process ex...
Walliw asked 26/9, 2012 at 22:21
4
Solved
I need to sudo as a different used in order to execute a certain command. I am trying to use strace with it and redirecting the output of that into a file for further analysis. The tricky par...
Asare asked 2/7, 2012 at 9:49
2
Solved
I need to pass 3 variables with a URL but using slashes. So for example I would use this URL:
http://www.example.com/variable1/variable2/variable3
I have this in my HTACCESS which allows the text...
Muslin asked 1/9, 2012 at 15:53
2
Solved
Is there anyway to redirect standard output of a spawned process and capture it as its happening. Everything I have seen just does a ReadToEnd after the process has finished. I would like to be abl...
Fredelia asked 16/8, 2012 at 20:0
4
Solved
I would like to be able to detach my program from the console much like wget -b. A code fragment might look like
static void Main(string[] args)
{
var settings = new Settings(args);
if (settings...
Morion asked 28/3, 2012 at 17:57
3
Solved
Is it possible, and if yes how is it done? The usual > and >> that work on the Windows or Linux command line don't work in this context.
Elated asked 29/2, 2012 at 5:26
3
Last week I posted the question How can I obtain console application output when running it as a process in a C# DLL file? as I was trying to find out the cause of a problem I was having. However, ...
Archival asked 26/9, 2011 at 1:30
1
Solved
I have some existing code making use of System.Diagnostics.Process.Start to start a child process. It also uses ProcessStartInfo.RedirectStandardOutput to capture the output stream of that process....
Archaeology asked 16/12, 2011 at 7:19
4
Solved
I want to capture output sent to standard out and standard error within an MSTest unit test so that I can verify it. I've captured output before when explicitly running a Process, but is there a wa...
Chromo asked 19/2, 2010 at 17:40
2
Solved
I read the documentation for Process.StandardOutput, which has this quote:
A deadlock condition can result if the parent process calls p.WaitForExit before p.StandardOutput.ReadToEnd and the chi...
Extramundane asked 9/11, 2010 at 18:54
1
I have a program that launches command line processes in async mode, using BeginOutputReadLine. My problem is that the .Exited event is triggered when there is still some .OutputDataReceived events...
Guss asked 25/2, 2010 at 19:58
4
Solved
I have a form with 3 controls:
A textbox for the user to enter
commands to send to a console
application,
A button to confirm the commands to
be sent and
A read-only textbox to display the
output...
Defalcation asked 19/11, 2009 at 18:26
1
© 2022 - 2024 — McMap. All rights reserved.