Tagged Questions

5
votes
2answers
133 views

Problem with piping commands in C

Hi, 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 …
0
votes
1answer
34 views

PHP Mail Piping

Hi, I don't know much about this and was just curious because i had an idea :) I know with my cPanel hosting i can pipe an email inbox to a script, but what i want to do is: send …
0
votes
3answers
46 views

writing data from a program to a file

I'm using linux. Let's say I have a program named add. The program takes two numbers. so if I type in add 1 2 the answer is 3 //obvious what command will make this write out …
7
votes
3answers
299 views

Python piping on Windows: Why does this not work?

I'm trying something like this Output.py print "Hello" Input.py greeting = raw_input("Give me the greeting. ") print "The greeting is:", greeting At the cmd line Output.py …
6
votes
4answers
480 views

Piping as interprocess communication

I am interested in writing separate program modules that run as independent threads that I could hook together with pipes. The motivation would be that I could write and test each …