A Unix pipe connects file descriptors of two processes. A pipe is created with the POSIX pipe() function declared in . Shells provide pipe creation between processes using "|".

learn more… | top users | synonyms

1
vote
1answer
18 views

using sort with dup2

I'm experimenting with this dup2 command in linux. I've written a code as follows: #include <stdio.h> #include <unistd.h> #include <string.h> int main() { int pipe1_ends[2]; ...
0
votes
2answers
30 views

powershell send pipe input to pipe

I have a script that accepts piped parameters. I can't be sure that the user has already piped their input through Sort-Object before piping to my script so I want to send the piped input out for ...
0
votes
2answers
32 views

Executing shell command in python with file as stdin

In my Python code, I have executable_filepath = '/home/user/executable' input_filepath = '/home/user/file.in' I want to analyze the output I would get in shell from command /home/user/executable ...
1
vote
2answers
403 views

Python argparse & Unix piping to arguments

Suppose I want the output from rsgen.py to be used as the references argument of my simulate.py script. How can I do it? In simulate.py parser.add_argument("references", metavar="RS", type=int, ...
1
vote
0answers
24 views

why $BASH_SUBSHELL doesn't increase in pipe

I know pipe will create subshell. I test $BASH_SUBSHELL and $BASHPID , and find $BASH_SUBSHELL doesn't increase in pipe echo $BASH_SUBSHELL # 0 echo $BASHPID # 8347 echo ...
0
votes
2answers
45 views

How to make a UNIX pipe prompt for user input correctly?

I am trying to have UNIX pipes correctly prompt for user input. I have to create 3 child processes using a single pipe. Each child process asks the user to enter an integer and writes it to the pipe. ...
2
votes
1answer
119 views

How do i correctly utilize pipe, fork and execv to launch and interact with a secondary program?

Programming Language: C and C++ mixed code Context: There is program 'A' that takes user input from STDIN and outputs a response to STDOUT. The input and output of 'A' are unsuitable for my intended ...
1
vote
0answers
44 views

Calling subprocess.Popen with stdin, stdout, and stderr set to subprocess.PIPE changes the behavior of the terminal

I recently developed a Python script to leverage a tool to retrieve metrics from JVMs via JMX. The parent process (p1) uses the following code to start another process (p2). p2 = subprocess.Popen( ...
2
votes
3answers
39 views

jQuery error with pipe symbol “|” in ID name [duplicate]

I have a select menu, it's options are ID'd like this: <select> <option id='order1|2'>1</option> <option id='order2|2'>2</option> <option ...
2
votes
5answers
935 views

How to receive arguments via shell pipe in python?

I would like to do something like this: find -name "foo*" | python main.py and access all the files that were found by the find program. How do I access that in Python?
5
votes
3answers
6k views

How to make a pipe in c++

I'm looking at the code for a c++ program which pipes the contents of a file to more. I don't quite understand it, so I was wondering if someone could write pseudocode for a c++ program that pipes ...
0
votes
1answer
13 views

Creating multiple child processes with a single pipe

I need to create three child processes, each of which reads a string from the command line arguments and writes the string to a single pipe. The parent would then read the strings from the pipe and ...
2
votes
3answers
60 views

How to check if a received email is legit?

I'm developing a system which gets emails from PIPE, verify if the email address which from the email was sent is in the client database, and write it into the database. The problem is that I don't ...
1
vote
2answers
52 views

is there any consequence if I create a lot of pipes in the same program

I need to create a lot of pipes, I want to use them as fifo queues between threads in the same process, and then do select/poll on them. my question is, if I create a lot of queues, wiil this have ...
-1
votes
0answers
38 views

How to get send response through a pipe in C, Linux?

I need to make a client - server application where the username is sent to the server, and the server returns the number of processes executed by that user. I need to do this using pipes. This is ...
1
vote
1answer
29 views

write pointers to pipe, are there any strict aliasing or pun type issues?

I need to create many FIFO queues in a program, which is used for communication between threads in the same process. I think I can use pipe() for this purpose, because in this way, I can use select ...
0
votes
2answers
37 views

strange behavior in character string and pipe

I have a program: int main() { int* p_fd = (int*)malloc(2*sizeof(int)); char buf[100]; pipe(p_fd); write(p_fd[1],"hello", strlen("hello")); int n; n = ...
-1
votes
2answers
29 views

Unix: cat-ing a file out to itself - why does this blank the file? [duplicate]

Can someone please explain to me why this code works (i.e. file2.txt is the alphabetically sorted contents of file1.txt): cat file1.txt | sort > file2.txt But when I do this, file1.txt blanks ...
0
votes
1answer
66 views

Use Pipe between FORTRAN and C++

I am trying to pass large amount of data (double numbers) from a FORTRAN program to a C++ Program using pipe method. I followed http://msdn.microsoft.com/en-us/library/ms682499(VS.85).aspx for the ...
0
votes
2answers
76 views

Can not understand the pipe() in my own shell

This is the code i found for my own shell. It works fine, but the thing i can't understand is pipe section of the code. #include <stdio.h> #include <unistd.h> #include <string.h> ...
1
vote
1answer
27 views

unix : how does a “./process | sort” work?

To debug some map/reduce jobs I often test them using a simple unix command that basically reads cat data/* | mapper | sort | reduce > out Now everything works just fine, but I'm wondering what ...
1
vote
2answers
40 views

C: creating named pipe using mknod() not wokring

Language: C OS: Ubuntu I'm simply trying to create a FIFO named pipe using the command: state = mknod("pipe.txt", S_IFIFO | 0666, 0); the problem is i always get the state's value to be -1 ...
0
votes
1answer
21 views

GNU Make: sed doesn't work when piped inside of $(shell)

Here is my experimental Makefile. .SECONDEXPANSION: ~/hello.txt: $(shell echo '$$(@D)/')$(shell echo '$$(@F)' | sed -e 's/hello/bye/') echo "$^" Somehow the sed command doesn't work, and Make ...
0
votes
1answer
33 views

ruby pipes to bash commands

I am creating a ruby wrapper for axel which will issue a HTTP get request to a website directory, parse it for downloadable content, and then pass the full URL off to axel to download one by one ...
6
votes
3answers
1k views

Behavior of a pipe after a fork()

When reading about pipes in Advanced Programming in the UNIX Environment, I noticed that after a fork the parent can close() the read end of a pipe and it doesn't close the read end for the child. ...
0
votes
1answer
21 views

Mac open grep file list

I want to search for a string in files and pipe the resulting file list to OSX's "open" command, thus opening all files that contain said string for editing in their default editor (aka not vim). For ...
0
votes
1answer
21 views

Can I pipe files from find to less?

I have a bunch of files, and need to examine all which are non-empty. I can find these files e.g. by running find *e* -maxdepth 1 -size +0 -print But if I add | less to the above, I only get to see ...
9
votes
6answers
4k views

How do you construct a read-write pipe with lua?

I'd like to do the equivalent of: foo=$(echo "$foo"|someprogram) within lua -- ie, I've got a variable containing a bunch of text, and I'd like to run it through a filter (implemented in python as ...
1
vote
1answer
64 views

C - WHILE Loop with fork() / pipe() inside

I have a problem where I must implement a key logger into a shell we have made in class. I am having trouble getting the flow of the program within a while loop to continue looping after a child ...
1
vote
2answers
53 views

Advantage of named pipes over anonymous pipes c++

What are the advantages of using a named pipe over an anonymous pipe. How a named pipe can be used to communicate to a remote machine.
0
votes
1answer
49 views

C pipe, fork, dup, and exec()

I'm trying to pass list of strings through pipe to child process where it should display through /bin/cat using execl(). I had it working earlier except that the pipe did not close so the program ...
0
votes
1answer
69 views

C system calls pipe, fork, and execl

I fork()'d a child process and created pipes between them and am able to send argument argv[1] to the child. I want the child to take that filename provided from argv[1] and perform an ...
0
votes
1answer
43 views

How to loop through stdin & pipe output to a child execl command in C?

I have been trying to figure out how to loop through stdin from a file, then send it to a child process who sorts int using execl(). The code below works in that it takes the file & sorts the ...
0
votes
1answer
45 views

writing to pipe signals synchronization

Here's what I'd like to do: (It is a part of the bigger assignment) And I'm stuck at the start of it. I've created the main process which forks p1,p2 processes and used execlp(separate programs). ...
0
votes
1answer
40 views

C pipe programming : passing data using a pipe

I just wrote the following code :- #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { // Create a pipe int fd[2]; pipe(fd); int i; ...
0
votes
1answer
34 views

Can somebody help me with this assignment on pipes?

So we have to create a program that creates 3 children processes, the relay information to each other. The first process reads in data from a file. The second process changes that data by converting ...
0
votes
1answer
76 views

named pipes(fifo) program doesn't work

guys! I am trying to make my first program that uses named pipes or fifo. The client sends to server positive integers. When a negative number is sent, the transmission closes. The server determines ...
0
votes
5answers
72 views

Pipe() doesn't work well - linux

I'm trying to make a program using the pipe communication. This is what I'm trying to do: the user sends positive integers. If the user sends a negative number the communication ends. The parent ...
1
vote
0answers
118 views

SIGPIPE (Broken pipe) on tcp_disconnect to exec a client (WCF Soap 1.1 and server)

I am developing a Qt client (C++) with gSOAP lib, which is supposed to discuss with a Web Service by Microsoft (WCF). I use SOAP 1.1 on both sides. My client code is as follows : ...
0
votes
1answer
65 views

How to execute arbitrary pipes in c and continue

I'm trying to fork and then execute two or more piped commands in the child process. My idea is to use a while loop to continuously fork and execute the command in one process while continuing the ...
0
votes
1answer
36 views

Stream awk during file generation/ upload from user to my server

I have a redhat server on which I very large files get uploaded by users. Once the files are completely uploaded, I run a script on them to parse the data. Its a bash script with 90% awk in there. Is ...
0
votes
1answer
47 views

Using DOS batch, read 2nd line in a pipe delimited file and extract date from 3rd column

I need to extract a date from a text file. File is in pipe delimited format. It has series of columns which might or might not have value. I need a date from the 3rd column in second row. After that, ...
0
votes
1answer
46 views

Using pipe in linux using parent and child process

i am trying to implement this linux command using C. ls -l | cut -b 1 the way i am trying to do it is calling ls -l in parent process putting output of ls -l in a file(writing to a file) ...
7
votes
6answers
7k views

real time subprocess.Popen via stdout and PIPE

I am trying to grab stdout from a subprocess,Popen call and although I am achieving this easily by doing: cmd = subprocess.Popen('ls -l', shell=True, stdout=PIPE) for line in cmd.stdout.readlines(): ...
0
votes
0answers
8 views

Icinga performance data: direct pipe into database

I just read through some icinga documentation regarding the performance data collection and processing. But there are some things unclear to me right now: Writing to file/disk -> does this roll over ...
0
votes
0answers
14 views

read() and write() on multi pipes

(Sorry for my poor English)I 'm writing program that invoke a coprocess.Coprocess is a filter reading form stdin,writing to stdout, and invoked by a same process.So my program can give the coprocess ...
1
vote
1answer
33 views

Pipes as stdin/stdout in process communication.

I'm learning pipes and I have occured problem. I want my program to work as: grep [word to find] [file to search] | grep -i [without word] | wc -l It compiles and works with no errors, but it gives ...
0
votes
2answers
46 views

Using 2 pipes to transfer between threads

I have to create a program which uses threads and pipes in Java. I have to create 2 classes which are threads. The 1st class makes a random number, then it has to pass to the 2nd class (it will have ...
0
votes
1answer
22 views

Define same pipe to 2 diferent programs

im trying to pass values from one program to another using pipe. The first program create a pipe and then a son process with fork and in the part of the son process she execute with execlp another ...
0
votes
0answers
27 views

Passing chars from keyboard from one process to another with pipe

im trying make a game that consist 2 C files. The game need to be running over linux terminal. The game is tetris game , 1 C file is the keyboard listener and one is the view. The first C file ...

1 2 3 4 5 28