0
votes
2answers
26 views
Using NSTask with an NSPipe and a Perl script that spawns another process
I am running a Perl script within an NSTask object with it's output going into an NSPipe. I am using notifications to receive it's output periodically and update the GUI.
The Perl …
0
votes
1answer
37 views
Replacement for Vern Buerg’s list.com in 64 bit Windows 7
I would like to find a replacement for list.com, specifically the ability to accept piped input. For example:
p4 sync -n | list
which accepts the output of the perforce command …
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
47 views
Named pipe C# using .NET 3.5 features like NamedPipeClientStream
Are named pipes in Windows (and other OS as well process wide)?
I have this weird scenario:
I wrote a program lets say "Controller.exe" which spawns a bunch of "Workers.exe", the …
1
vote
5answers
69 views
linux shell: How to read command argument from a file?
I have process id in a file "pid"
I'd like to kill it.
Something like:
kill -9 <read pid from file>
I tried:
kill -9 `more pid`
but it does not work. I also tried xarg …
2
votes
3answers
143 views
Forks and Pipes in C UNIX
I'm not sure if I am even barking up the right tree here... but here goes.
I'm trying to pass data from my parent process to all children. It's a simple server program that basica …
1
vote
5answers
120 views
Connecting Two Bash Commands
I have Ubuntu Linux. I found one command will let me download unread message subjects from Gmail:
curl -u USERNAME:PASSWORD --silent "https://mail.google.com/mail/feed/atom" | tr …
1
vote
4answers
144 views
fork() and pipe()
I need help with this sample application. When I run it, it gets stuck after the child process prints "Child sending!".
#include <stdio.h>
#include <unistd.h>
#include …
1
vote
4answers
124 views
How to get the PID of a process that is piped to another process in Bash?
Hi,
I am trying to implement a simple log server in Bash. It should take a file as a parameter and serve it on a port with netcat.
( tail -f $1 & ) | nc -l -p 9977
But the …
0
votes
2answers
17 views
how to display data comming from pipe on GUI form in C #
I have made a small server and client application connected via named pipe. I am able to communicate between them in console application. Now i want that data to be displayed in te …
2
votes
1answer
67 views
Is there any difference between socketpair and pair of unnamed pipes?
I would like to know not only user-side differences, but differences / common parts in Linux kernel implementation as well.
1
vote
1answer
85 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 …
1
vote
2answers
93 views
How can I use Linux’s splice() function to copy a file to another file?
Hello--here's another question about splice(). I'm hoping to use it to copy files, and am trying to use two splice calls joined by a pipe like the example on splice's Wikipedia pag …
2
votes
4answers
145 views
perl hangs on exit (after closing a filehandle)
I've got a function that does (in short):
my $file = IO::File->new("| some_command >> /dev/null 2>&1")
or die "cannot open some_command for writing: $!\n";
.. …
1
vote
3answers
105 views
Switch from file contents to STDIN in piped command? (Linux Shell)
I have a program (that I did not write) which is not designed to read in commands from a file. Entering commands on STDIN is pretty tedious, so I'd like to be able to automate it b …
