Re: Piping in Linux
Sorry,may be i was not clear at first
but what i'm asking is how two separate programs can share data(send & receive data) to each other using the concept of piping
this is different from how to use pipes that already exist in Linux console, it's how to implement those pipes form scratch
and make two processes talk to each other.
It's like having two separate chat programs running on the same PC, when you type a word in one window it appears on the other one.
The two application must have shared memory space to send and receive data, and that is the Pipe.
Piping concept in Linux is different form it in Windows, and can be implemented by any other language rather than Java
But i'll use Java.
It's a project in operating system course
I hope I'm clear now..