Tagged Questions
6
votes
2answers
277 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
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 ...