Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
27answers
5k views

Making a system call that returns the stdout output as a string

Perl and PHP do this with backticks. For example, $output = `ls`; returns a directory listing (not that you should do it that way). A similar function, system("foo"), returns the operating system ...
2
votes
1answer
175 views

Output from external exe and my custom objects in powershell

(Sorry for strange title, haven't come up with anything better..) Background I use nunit-console to test my assemblies. It is called like this (simplified): function Test-ByNunit { ...
1
vote
2answers
343 views

C# capturing python.exe output and displaying it in textbox

I have worked on this issue for a while. I can capture the output(live) of the console window just fine, but I can't capture the output of a python console application in real time. I can capture ...