Tagged Questions
0
votes
2answers
46 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. ...
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 ...
-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 ...
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 ...
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>
...
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
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
28 views
How do i diff two files from the web
i need some help on the command line.
I want to see the differences of 2 files that not in the local filesystem but on the web. So, i think if have to use diff, curl and some kind of piping.
...
0
votes
1answer
32 views
Why only related processes can only communicate using pipe() (IPC)?
why does there is limitation that with pipe() only parent and child process can communicate, why not unrelated processes?
why can't two children of a process can't communicate using pipe()?
0
votes
3answers
37 views
Pipe communicating between the child and the parent using 2 pipes
#include<dirent.h>
#include<string.h>
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
int main()
{
int canal_son[2];
int canal_father[2];
...
0
votes
2answers
67 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?
...
3
votes
4answers
78 views
Perl, how do I create a pipe to my exec'd child?
I am trying to pass data from my perl script to my c program using a pipe (uni-directional).
I need to find a way to to do this without messing with the child programs STDIN or STDOUT, so I try ...
0
votes
0answers
65 views
Multiple C UNIX pipes - close() call crashes program?
I'm currently writing a UNIX shell, and to program the
command 1 -args | command 2 - args | command 3 -args
functionality (i.e. output of the first command is used as the input of the second and so ...
-3
votes
1answer
42 views
Inter-Process Communication [closed]
Im trying to implement a program which takes N processes .
My code doesn't compile properly,i tried to pass an input :./a.out "ls -ll" .
put it didn't execute while ,when i tried with ./a.out ls it ...
0
votes
1answer
19 views
bold and color with unix's more
I pipe compiler output into more (to avoid getting pages upon pages of warnings when I really only want to know the first few), but this doesn't preserve bold and color. Is there a way to preserve ...
1
vote
0answers
83 views
two children reading from a pipe
Here's what I'd like to do:
I've tried to make a program that creates parent with two children, parent creates unnamed pipe, writes into it and the children are supposed to read from it (per 1 byte) ...
1
vote
1answer
31 views
Find missing URL routes using the command-line
I'm trying to automate a check for missing routes a Play! web application.
The routing table is in a file in the following format:
GET /home Home.index
GET /shop Shop.index
I've ...
0
votes
0answers
22 views
Entering inputs into system command through variables after execution of command starts
I am trying to run an exe by means of system command from VC++. The exe is something like it takes input from user at run time. But the requirement of my work is that I am not supposed to give the ...
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
...
1
vote
4answers
89 views
Sub-processing pipe write to file malfunction
Executing this in shell gets me tangible results:
wget -O c1 --no-cache "http://some.website" | sed "1,259d" c1 | sed "4,2002d"
Doing this in Python gets me nothing:
...
0
votes
1answer
73 views
dup2( ) causing child process to terminate early
So I'm writing a program that involves the creation of 2 sets of pipes so that a parent process can write to a child process & the child process can right back...
I have the following code for my ...
0
votes
1answer
78 views
remove lines that match column condition in Unix/bash
What's the best way in bash to do a quick one liner to filter out all lines from a tab separated file if the Nth field has the string s in it? example:
$ cat myfile
A B_crop C
A X_mock D
$ cat ...
1
vote
1answer
157 views
chaining line by line writing/reading of pipes in Python with subprocess
I have the following code which appears to work, for chaining pipes together in python with subprocess while reading / writing to them line by line (without using communicate() upfront). The code just ...
0
votes
0answers
79 views
Two way usage of pipe
I have 2 processes. One of them is CPU other is MEM. CPU sends read and write requests to MEM and MEM processes that request.
I have to use fork and pipe. I created 2 pipes, one for reading and one ...
2
votes
1answer
235 views
Unix C - Redirecting stdout to pipe and then back to stdout
I'm not sure if the following can be done because I cannot find any questions/results via Google on it. I want to change stdout of a fork() to a pipe, and then change it back to the normal stdout.
...
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
...
1
vote
2answers
233 views
C Unix - fork(), execl() and pipe in a loop
I want to preface this with the fact that I have no formal education in the use of pipes, so this is my first venture. Not to mention that I couldn't find any similar questions to my situation.
...
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
83 views
Is it possible to connect two pipes/sockets?
I am wondering if it is possible to connect two pipes or socket. Lets suppose that have two pipes/socketpairs. The first one has two file descriptors A and B, the second one has two file descriptors C ...
3
votes
1answer
115 views
pipe call and synchronization
I'm experimenting some problems with this code:
#include <stdio.h>
#include <stdlib.h>
#define SIZE 30
#define Error_(x) { perror(x); exit(1); }
int main(int argc, char *argv[]) {
...
3
votes
3answers
83 views
Duplicate stdout, pipe it to two different commands, collect results from both to stdin of final program
Say I have three programs: generator, that produces input data fed to processor and verifier that can check if processor output is correct for given input (so it needs both files).
What I currently ...
1
vote
1answer
134 views
How to redirect local ouput to stdin over ssh to remotely execute a local script?
i am trying to remotely execute a perl script that takes data from stdin, over ssh.
The tricky part is that i don't want to upload the script itself to the remote server.
The data that the remote ...
1
vote
1answer
131 views
Using UNIX pipes for process synchronization-starvation
Can we, by using UNIX pipes for process synchronization, be led into starvation?
For example:
void pipesem_wait(struct pipesem *sem)
{
char onebyte = 'A';
if ( read( sem->rfd, ...
0
votes
2answers
55 views
Pipe output to parameter
So I wanted to write a simple command that counts one less than the number of files in my current directory. I have this command that comes close but is off by one.
ls | wc -l
How can I pipe this ...
1
vote
1answer
170 views
correct way to write to pipe line by line in Python
How can I write to stdout from Python and feed it simultaneously (via a Unix pipe) to another program? For example if you have
# write file line by line
with open("myfile") as f:
for line in f:
...
1
vote
0answers
109 views
How to redirect stdout and stderr to a pipe but keep them ordered
I want to be able to read independently the stdout/stderr (and a new stdlog I am introducing) from a sub-process, do something with these streams, and write them to the screen and to a log file in the ...
0
votes
2answers
110 views
Unix Pipes for Command Argument
I am looking for insight as to how pipes can be used to pass standard output as the arguments for other commands.
For example, consider this case:
ls | grep Hello
The structure of grep follows ...
0
votes
2answers
90 views
What is the best way to consume data from a pipe?
I'm interested in the more portable yet fastest way to consume data from a pipe.
For example, in linux the fastest way I can think of is the following:
#define _GNU_SOURCE
/* ... */
int fd;
int ...
2
votes
2answers
122 views
How to run a command using pipe?
I am trying to run ls|wc using execvp. So I create a pipe and then fork to create a child. I close the appropriate(read./write) end in parent/child and then map the other end to stdout/stdin. Then I ...
-3
votes
1answer
159 views
“Command not found” error with UNIX shell
I've been working on a C program which simulates a shell via the terminal. I'm stuck on the pipe where I use a temporary file.
My problem is that during the execution of a command like ls | wc it ...
-3
votes
1answer
69 views
Unix Shell in C Pipe prob [closed]
I am currently working on a unix shell c. My problem is the pipe, I have traveled many forums and I can not solve it.
I go through a temporary file.
Thank you in advance.
Code here : ...
0
votes
2answers
126 views
Write pid to fifo - C
I've got two C files, server.c and client.c. The server has to create a fifo file and constantly read in it, waiting for input. The client gets its PID and writes the PID in the fifo.
This is my ...
1
vote
0answers
70 views
error checking pipe commands made in python for unix
I am compiling a command to be executed on a unix system from python, containing multiple piping step. e.g.:
grep foo myfile | cmd1 | cmd2 > output
These correspond to a series of ...
1
vote
2answers
97 views
How do applications read lines from stdin without consuming existing buffered data from a pipe?
Take the following command:
mysql -u root -p < load_data.sql > output.tab
The -p flag tells the mysql client - a C program - to provide the user with an interactive prompt to enter the ...
0
votes
4answers
283 views
Writing and reading to child process via pipes doesn't work
As an exercise in Unix programming I wrote a program which creates two pipes, forks a child and then sends and receives some text to and from the child via the pipes. It works if in the child process ...
1
vote
1answer
377 views
C Minishell Adding Pipelines
So I'm making a UNIX minishell, and am trying to add pipelines, so I can do things like this:
ps aux | grep dh | grep -v grep | cut -c1-5
However I'm having trouble wrapping my head around the ...
1
vote
0answers
103 views
Why does reading 16kb + 1 bytes from a pipe hang?
I've got a simple test case for reading from a pipe that passes in MRI and fails in JRuby 1.7+. It's reported as a critical bug in JRUBY-6986.
tl;dr Why would a 16kb (16384 bytes) file be read ...
0
votes
1answer
52 views
Getting filenames from a directory, put it into file, then zip it (UNIX)
Okay - so I've been trying all day today to see if this is possible.
In my case, I have a cache folder contains 1 million of cache files (and yes it's impossible to open). So for housekeeping, I'd ...
3
votes
1answer
85 views
close multiple output pipes in perl without blocking on each one
I have a perl script which sends a lot of output to multiple subprocesses. I need to be able to close my end of all the pipes and then wait for the subprocesses to finish their work. So far I've ...
1
vote
2answers
108 views
Communication between unix commands in Java
In one commend , I'm trying to send data to System.out like this:
And in another command I'm trying to get this data from System.in.
It's strange because, it works once of many tries. I can try to ...


