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
28 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 ...
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
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 ...
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
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
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) ...
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
vote
1answer
39 views

Struggling to comunicate between processes with signals

im trying to create a game in C under linux terminal. I need to create a tetris game that consists of two c files, One C file create execute file (a.out) and the other create (draw.out). The first ...
0
votes
0answers
3 views

How can I copy a file between server using bsdtar? [migrated]

I'm looking for the fastest way of copying a file between 2 linux servers using bsdtar. With normal tar, I would do something like: ssh root@remote 'tar -cz -C /my/path/ big_file.txt' | tar -zxv ...
0
votes
1answer
27 views

In linux, calling system() from a forked process with pipe()

I have a standard program using fork() and pipe() with the intention of making a system() call for a third party program in the child process and redirecting the output to the parent process. I ...
0
votes
2answers
69 views

C: “write: Broken pipe” error

I want to try Pipe communication with child and parent process. Parent process write to pipe and child process read this but my program get error "write: Broken pipe". How can I change this code? ...
1
vote
1answer
19 views

Collect data from a named pipe for a period of time

I want to analyse some data from a named pipe, for example: cat trace_pipe | awk '{print $6}' | head -100000 | sort | uniq -c | sort -k 1 -nr This command will collect first 100k lines of data ...
0
votes
1answer
122 views

Is it safe to run external commands such as awk, sed, grep etc in C?

I am running a command that gives a string as output which I read in my C code using popen(). The command I pass to popen() is something like this: mypipe = popen("some_cmd | awk '{print $2}'", ...
0
votes
3answers
74 views

How to delay pipe netcat to connect on first input

Running in bash under Ubuntu: I have a source that generates me some output, but not straight away. Let's assume it is a first netcat listening on a socket: netcat -l 12345. And I would like to pipe ...
0
votes
1answer
32 views

Is write mode pipe synchronous?

Will the following code wait for the command execution to finish before abort() is called? In case it doesn't and the parent process is aborted, will the child(the bash shell) be alive and continue ...
0
votes
0answers
61 views

ffmpeg in child process doesn't exit when parent closes pipe

This code snippet is from a pthread process. It is responsible for reading configuration/options to pass to ffmpeg. The data piped to ffmpeg is coming in on a ring buffer of video frames (as a proof ...
1
vote
3answers
78 views

How does “less” command get stdin input?

I'm just wondering about this problem: if I can use something like "ls -al | less", less should have the ability of waiting for input from stdin. What I expected to happen is after running "less" ...
0
votes
1answer
41 views

Can't read data from redirected io

I've written a relatively simply piece of code that polls a pipe that was redirected as stdout in a child process. But when the poll function returns and says data is ready, the read function always ...
0
votes
3answers
80 views

How do i append some text to pipe without temporary file

I am trying to get the max version number from a directory where i have several versions of one program for example if output of ls is something01_1.sh something02_0.1.2.sh something02_0.1.sh ...
0
votes
1answer
193 views

Reading data from FIFO as it arrives (linux)

I have two programs written in C. Program A generates output to FIFO and program B reads that output from FIFO and decides to process accordingly. Now in program A, I have redirected stdout to FIFO so ...
0
votes
3answers
118 views

Redirect stdout to fifo immediately

I have, for example, a c program that prints three lines, two seconds apart, that is: printf("Wait 2 seconds...\n"); sleep(2); printf("Two more\n"); sleep(2); printf("Quitting in 2 ...
2
votes
2answers
115 views

Difference between pipe open '|' and '|-' (safe pipe open)

I have seen these two forms of pipe open in perl. One is simple pipe open open FH,'| command'; and other is safe pipe open open FH,'|-','command'; Now, What is the use of - in second one? They ...
0
votes
3answers
70 views

Program which checks the output of another program

I'm organizing a programming competition. I need to create a program which checks the output of another program (the participant's executable) character-by-character. The requirements are: The ...
1
vote
2answers
168 views

C Programming pipe only half working

I'm working on a mini shell for a college assignment. We have to read in the command, find the binary to execute from the path var, and execute command, both with and without pipes. I have everything ...
3
votes
2answers
125 views

Logging to a non blocking named pipe?

I have a question, and I could'nt find help anywhere on stackoverflow or the web. I have a program (celery distributed task queue) and I have multiple instances (workers) each having a logfile ...
1
vote
1answer
130 views

O_RDWR on named pipes with poll()

I have gone through a variaty of different linux named pipe client/server implementations but most of them use the blocking defaults on reads/writes. As I am already using poll() to check other flags ...
1
vote
2answers
67 views

How to not output anything when the first command of a pipe does not output

I have 2 commands which I want to pipe like so: command1 | command2. When command1 does not output anything at all command2 still outputs. How do I stop command1 | command2 from outputting when ...
0
votes
1answer
62 views

python Popen.wait() daedlock on multiple pipes - why?

Following code finishes correctly, import subprocess p = subprocess.Popen("cat", stdin=subprocess.PIPE) p.stdin.close() p.wait() print p.returncode but following code never end. import subprocess ...
0
votes
1answer
80 views

shellscript, download tg and pipeline stdout to tar, get http header in stderr?

The shellscript I am trying to write is to download a tarball and stdout to tar to uncompress it at the same time parse the http headers found at stderr set the parsed result at #2 to a variable. ...
0
votes
1answer
176 views

Extracting Specific class file from EAR file in Unix

I have an ear file which contains around 20 jar files. Now there is a specific jar file in this EAR say jar 1 which contains application class files. Now I want a single line command in unix which ...
0
votes
1answer
404 views

Linux fifo (named pipe) O_NONBLOCK breaks pipe

I've been writing a small program in C++ for linux using inter process communication. I had a problem when trying to read in a non-blocking way with one process and write (blocking) with another ...
0
votes
3answers
64 views

Handle out of range in select

Many (>1000) workers (process) do some and want to save their work results in database. Result of work is JSON object. Workers produce JSON objects 1-5 per second. Database saver is separated process. ...
0
votes
0answers
52 views

How can I write spliceAll in Linux?

I want to drain a pipe by pushing all its data to a socket using the splice system call on Linux. My current attempt is: ssize_t splice(int i, loff_t* io, int o, loff_t* oo, size_t l, unsigned int ...
0
votes
2answers
98 views

Sending Unix/Linux SIGNAL through PIPE

I want to sent a SIGNAL to a process after .5 seconds. Maybe this is not a good idea to do but I want to do it for an uncommon temporary case. I tried like following, but its not working. (sleep ...
1
vote
1answer
196 views

Capturing input from usb device in Linux

So, after searching a little bit... have found the following way to capture the input from my USB QR code scanner. import sys pipe = open('/dev/input/event3', 'r') while 1: for character in ...
0
votes
1answer
355 views

Multiple reader/writer on FIFO (named pipe)

I've created a named pipe using mkfifo and opened a reader and writer on it. I then went on to open a second reader/writer on the same fifo but open returns ENXIO instead. std::string n = ...
0
votes
2answers
158 views

Core dump to a pipe is failing

Tried this on MIPS platform: > uname -a Linux (none) 2.6.29 #2 Mon Jan 14 13:26:04 PST 2013 mips GNU/Linux > ulimit -c unlimited > which gzip /bin/gzip > echo "|/bin/gzip - > ...
2
votes
2answers
96 views

pipe command together

I need to pipe 2 commands together, the first command replaced XYZ in input file to ",", then I need to do do another replace. unsuccessfully tried the following. tr 'XYZ' ',' <input_file | xargs ...
0
votes
1answer
107 views

How can we create 'special' files, like /dev/random, in linux?

In Linux file system, there are files such as /dev/zero and /dev/random which are not real files on hard disk. Is there any way that we can create a similar file and tell it to get ouput from ...
2
votes
1answer
183 views

no result!! using fork() to run execlp() with 2 pipes using dup2

I am writing a C program which will run Linux commands, like: cat /etc/passwd | grep list | cut -c 1-5 and i didnt have any result *here the parent wait for the first child(child_pid) to finish;and ...
0
votes
2answers
156 views

piping two times using fork in C linux

I am trying to rewrite a c program that do something like ls|wc|wc , I already did it for ls|wc , it worked fine, but I can't figure out why my program stops at the child in the indicated line. please ...
2
votes
1answer
310 views

Send data to multiple sockets using pipes, tee() and splice()

I'm duplicating a "master" pipe with tee() to write to multiple sockets using splice(). Naturally these pipes will get emptied at different rates depending on how much I can splice() to the ...
0
votes
2answers
402 views

How do I pipe the output of an LS on remote server to the local filesystem via SFTP?

I'm logged into a remote server via SFTP at the command line. The folder I'm in contains hundreds of thousands of files. I need to get a list of these files in a text file so I can access them ...
2
votes
0answers
63 views

FIFO throughput subject to process' `nice` value

It seems the kernel handles the data traveling thru named pipes (FIFOs) between two processes independently from the nice value assigned to such processes. This is particularly evident in the ...
0
votes
1answer
259 views

building a full duplex pipe in C

I'm trying to make a full duplex pipe, it's a piece of my home work (i tell beforehand). The scope of the homework is much much larger than this pipe, I just need it done so I could go on with the ...
3
votes
2answers
180 views

How to reuse intermediate results of Popen in Python?

The codes are like this: from subprocess import Popen, PIPE p1 = Popen("command1", stdout = PIPE) p2 = Popen("command2", stdin = p1.stdout, stdout = PIPE) result_a = p2.communicate()[0] p1_again = ...
1
vote
2answers
136 views

Forking And Piping C++ Strange Ouput

I am to write an assignment that takes 2 commands and their arguments (up to 5) and it will pipe the output of one to the other. It will then loop, again asking for two commands until quit is entered. ...

1 2 3 4 5