0
votes
1answer
27 views
How can a console application (e.g. Java) recognize the source of the ‘standard input’ stream?
If I run 'python' on the linux command line, and I don't provide any command line arguments, the program displays a welcome message and waits for user input. I would assume that un …
0
votes
0answers
23 views
Why doesn’t “find -print0” work in Cygwin under Vista?
I'm writing a simple shell script:
find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5
In Cygwin under Vista, it just sits there and nothing happens.
It works fine …
1
vote
1answer
21 views
is there a way to import/export a pipes source in text/xml format?
I'd like to save a copy of some of my pipes offline before I go to edit them, and possibly reload them from an external source again in future.
Can this be done?
0
votes
3answers
93 views
Linux Pipes as Input and Output
I would like to do the following inside a C program on a Linux os:
Create a PIPE using a syscall (or 2)
Execute a new process using exec()
Connect the process's STDIN to to the p …
0
votes
0answers
37 views
regex for all characters on yahoo pipes
I have an apparently simple regex query for pipes - I need to truncate each item from it's (<img>) tag onwards. I thought a loop with string regex of <img[.]* replaced by …
1
vote
1answer
59 views
C# Keeping Pipes Open
I've Got two Programs (Server / Client)
I'm trying to setup IPC for them (They both run on the same box)
Using System.IO.Pipes & Net 3.5
When I call ComOpen, it opens the Pipe …
0
votes
1answer
66 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 …
0
votes
0answers
18 views
How do I use Regex in Yahoo Pipes?
I am not Yahoo Pipes user but I do not know anything about programming.
I use Yahoo Pipes to generate RSS feeds from several websites that allow me to use their feeds on my site. W …
5
votes
2answers
133 views
Problem with piping commands in C
Hi,
I'm trying to create a simple shell in C for Unix. I've been able to do all the parsing of commands and execution, but I'm having a problem with piping. I think the problem is …
14
votes
8answers
372 views
Why don’t I see pipe operators in most high-level languages?
In Unix shell programming the pipe operator is an extremely powerful tool. With a small set of core utilities, a systems language (like C) and a scripting language (like Python) yo …
2
votes
3answers
57 views
Will data in a pipe queue up for reading by Perl?
I have a Perl script that executes a long running process and observes its command line output (log messages), some of which are multiple lines long. Once it has a full log message …
2
votes
2answers
74 views
What does SIGPIPE in this situation mean?
I have the following script structure: script A opens PIPE on B, and B opens PIPE on C. So the dataflow is A->B->C. B catches SIGPIPE. Though descriptors IN and OUT are opened:
$S …
0
votes
5answers
145 views
bash: split output of command by columns
I want to do this:
run a command
capture the output
select a line
select a column of that line
Just as an example, let's say I want to get the command name from a $PID (please …
1
vote
2answers
49 views
Named Pipes IPC
I am trying to create a pipe to use between two processes to send information. The two process are not related and implementation with signals has a problem where if the process th …
0
votes
1answer
31 views
Best way to keep a pipe open after a remote close
Using this tutorial i came up with the code below. My client is ran frequently. Its activated via clicks and possibly can be launched twice at the same moment in certain circumstan …
