3
votes
5answers
134 views
How can I implement ‘tee’ programmatically in C?
I'm looking for a way in C to programmatically (ie, not using redirection from the command line) implement 'tee' functionality such that my stdout goes to both stdout and a log fil …
0
votes
1answer
83 views
Python, C: redirected stdout fires [Errno 9]
I try to log all the output of a program written in Python and C. However, printing from Python causes IOError: [Errno 9] Bad file descriptor
Please, does anyone know what the pro …
2
votes
2answers
38 views
How to redirect stdout stderr in an ant script?
Hi,
I am triggering an ant script (via cruise control), and would like to be able to dump the std out and std err for a particular ant target to a plain text file.
Yes, I am awar …
1
vote
4answers
108 views
How do I find the current value of a processes STDOUT in Perl?
I have a POE Perl program forking children.
The children it is forking do logging and interactive telnets into remote devices.
POE uses STDOUT to return output back up to the pare …
2
votes
5answers
133 views
Is it possible to get the output of a program while it’s running?
If I have a windows console program written with c++, is it possible to retrieve that program's standard output, while the program is running? And if not, what would be the best w …
0
votes
1answer
24 views
freopen_s on stdout causes problems with GetConsoleScreenBufferInfo on Windows
To temporarily redirect stdout to a file, I'm doing:
printf("Before");
freopen_s(&stream, "test.txt", "w", stdout);
printf("During");
freopen_s(&stream, "CONOUT$", "w", st …
0
votes
2answers
26 views
get console log on MacOSX from another application
With the application Utilities/Console.app, I can see the console output of applications.
Is there a way to access this log from another application?
To be more specific: I am wr …
1
vote
1answer
39 views
QProcess::setStandardOutputFile only creates 0kb File
I'm using a simple QProcess-Project on a WindowsXP-Machine:
QString program = "U:\\ffmpeg.exe";
QStringList arguments;
arguments << "-i" << "U:\\clock.avi" << "U …
3
votes
2answers
90 views
How do I close the stdout-pipe when killing a process started with python subprocess Popen?
I wonder if it is possible to shut down the communication pipe when killing a subprocess started in a different thread. If I do not call communicate() then kill() will work as expe …
6
votes
6answers
286 views
Can I capture stdout/stderr separately and maintain original order?
I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red.
In order to accomplish …
1
vote
1answer
84 views
Why does write() to pipe exit program when pipe writes to stdout?
I have a server application that writes to a popen("myCommand", "w") file descriptor in a separate thread and if the command passed to popen() results in any output to stdout or st …
0
votes
2answers
136 views
Redirect stdout+stderr on c# windows service
I've wrote a windows service in C# using ServiceBase helper. During its execution some procedures on an external native DLL are called. Annoyingly, those procedures write to stdout …
4
votes
3answers
627 views
How can I reinitialize Perl’s STDIN/STDOUT/STDERR?
I have a Perl script which forks and daemonizes itself. It's run by cron, so in order to not leave a zombie around, I shut down STDIN,STDOUT, and STDERR:
open STDIN, '/dev/null' …
2
votes
2answers
119 views
catching stdout in realtime from subprocess
I have read tons of posts but still can't seem to figure it out.
I want to subprocess.Popen() rsync.exe in windows, and print the stdout in python.
My code works, but it doesn't …
1
vote
3answers
75 views
What is the simplest way to execute arbitrary process with stdin, stdout forwarded to a socket?
I'm interested in two situations:
How to do it from C++?
How to do it from system's shell?
Answers for Linux, Windows and OSX are welcome.
