Tagged Questions

6
votes
2answers
270 views

Problem with piping commands in C

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 that I'm not hooking ...
3
votes
3answers
134 views

Using the pipe() system call

I've been trying to use the pipe() system call to create a shell that supports piping (with an arbitrary number of commands). Unfortunately, I haven't had much luck using pipe(). After spending a few ...
3
votes
2answers
2k views

Pipe implementation

I am trying to implement a linux shell that supports piping. I have already done simple commands, commands running in background, redirections, but piping is still missing. I have already read about ...
1
vote
2answers
648 views

Making C code plot a graph automatically

I have written a program which writes a list of data to a '.dat' file with the intention of then plotting it separately using gnuplot. Is there a way of making my code plot it automatically? My ...
0
votes
1answer
60 views

Iterative piping implementation for linux in c

I know this question gets asked a lot but I am still really confused as to how to go about fixing my problem. I have attempted to write code that handles command line input for the possibility of ...
0
votes
2answers
486 views

Using fseek with a file pointer that points to stdin

Depending on command-line arguments, I'm setting a file pointer to point either towards a specified file or stdin (for the purpose of piping). I then pass this pointer around to a number of different ...
0
votes
1answer
93 views

piping commands into buffer on windows

I have the following code for linux: char pi[512]; FILE *fp1; char pingStr[250]; sprintf(pingStr, "ping %s", info->server); fp1 = popen(pingStr,"r"); fgets(pi,512,fp1); ...
0
votes
2answers
231 views

Piping output of C program to file (bash)

I'm just trying my hand in bash, so I wrote a simple program in C to count the number of characters in a file. This is my C program: #include <stdio.h> int main() { int i, nc; nc = 0; i ...