0
votes
3answers
84 views
fclose()/pclose() may block on some file pointers
Calling fclose() here after dup()ing its file descriptor blocks until the child process has ended (presumably because the stream has ended).
FILE *f = popen("./output", "r");
int …
0
votes
5answers
68 views
Remove from python string
When you run something through popen in Python, the results come in from the buffer with the CR-LF decimal value of a carriage return (13) at the end of each line. How do you remov …
0
votes
2answers
27 views
Ruby/RoR and many subprocesses
I am trying to build a free web application using ruby/rails It should be able to send sms through online forms of various mobile operators. (like this one (in russian)).
So, I ne …
0
votes
2answers
46 views
popen & status of a pipe
Let's say I spawn a process PO through popen (READ ONLY) from a process PA. I then pclose() the pipe on PA's side.
On PO's side, how do I determine if stdout is still available wi …
0
votes
4answers
89 views
Non-blocking pipe using popen?
I'd like to open a pipe using [popen][1] and have non-blocking 'read' access to it.
How can I achieve this?
(The examples I found were all blocking/synchronous)
0
votes
2answers
20 views
Using Ruby popen and PostgreSQL createuser
Hello all,
I am attempting to write a very simple rake task (and merge it into a rather large rake task) that will call the following command and pass in a randomly generated pass …
0
votes
1answer
68 views
Closest equivalent to subprocess.communicate in Haskell
I want to do a popen() / python's subprocess.communicate from Haskell - start a program, give it stdin, and get its stdout/stderr. What's the most direct / Haskellish way to do thi …
1
vote
2answers
31 views
popen - locks or not thread safe?
I've seen a few implementations of popen()/pclose(). They all used a static list of pids, and no locking:
static int *pids;
static int fds;
if (!pids) {
if ((fds = getdtable …
0
votes
2answers
54 views
Parsing output of apt-get install for progress bar
I'm working on a simple GUI Python script to do some simple tasks on a system. Some of that work involves apt-get install to install some packages.
While this is going on, I want …
1
vote
2answers
72 views
AF_UNIX socket: can I pass socket handle between processes?
Let's say I create a socketpair() and I pass the handle of one of the socket to a spawned process (popen), will the said process be able to communicate back with the parent?
The e …
0
votes
1answer
31 views
Debugging the reading of output of a Windows console app using Python
This question is very similar to this one. I want to read output from a console app of mine. The app does not terminate, nor does it take input from stdin.
When I modify rix0rrr's …
1
vote
2answers
47 views
python popen working directory argument
hi all,
I there a way to specify the running directory of command in subprocess.Popen()
like
Popen('c:\mytool\tool.exe',workingdir='d:\test\local')
and my python script locat …
2
votes
3answers
65 views
FILE * and istream: connect the two?
Suppose I "popen" an executable, I get a FILE* in return. Furthermore, suppose I'd like to "connect" this file to an istream object for easier processing, is there a way to do this …
1
vote
2answers
58 views
Stay in directory with popen.
Hello,
I want to make some C++ program and I'm using function popen here to send commands to command line in Unix. It works fine, but when I call "cd directory", the directory does …
0
votes
1answer
102 views
using ruby popen wrapped in a shell script
I finished my short file for a homework assignment which uses IO.popen("command").readlines to grab the STDOUT of that command. However, I need to write a shell script to wrap my r …
