5
votes
2answers
111 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 …
2
votes
2answers
63 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 …
2
votes
3answers
52 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 …
0
votes
1answer
21 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 …
1
vote
2answers
39 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
2answers
48 views
Public API with Private Elements in Python
I'm working on a web mapping service and would like to provide my users with a Python API that they can use to create custom plugins. These plugins would be running on my server so …
14
votes
8answers
356 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 …
1
vote
1answer
25 views
Run command pipes with subprocess.Popen
How to run the following command using subprocess.Popen?
mysqldump database_name table_name | bzip2 > filename
I know os.system() can do the job but I dont want to wait for t …
0
votes
5answers
83 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 …
3
votes
4answers
88 views
Read/Write to linux Pipe using Java
My query is on what is the best way to read / write to a linux Pipe in Java? I already am using the java.io.RandomAccessFile like
RandomAccessFile file = new RandomAccessFile(" …
0
votes
2answers
31 views
Problem with ftp output redirect in SUSE Linux
Hi,
I am working in a bash script where I need to analyze the output of an FTP session. But I encountered a problem with SUSE Linux FTP client when connecting to an AIX ftp server. …
3
votes
2answers
74 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 …
2
votes
4answers
99 views
blocks - send input to python subprocess pipeline
I'm testing subprocesses pipelines with python. I'm aware that I can do what the programs below do in python directly, but that's not the point. I just want to test the pipeline so …
0
votes
2answers
58 views
Python Pipes - What Happens When Reading Output Incrementally
According to a section in this presumably accurate book,
A common use of pipes is to read a
compressed file incrementally; that
is, without uncompressing the whole
thing …
5
votes
2answers
83 views
paste without temporary files in Unix
I'm trying to use the Unix command paste, which is like a column-appending form of cat, and came across a puzzle I've never known how to solve in Unix.
How can you use the outputs …
