Simulate `bash` behaviour using Python and named pipes.

Neil Cerutti neilc at norwich.edu
Mon Aug 5 12:00:31 EDT 2013


On 2013-08-05, Luca Cerone <luca.cerone at gmail.com> wrote:
> I just would like to learn how to handle named pipes in Python,
> which I find it easier to do by using a simple example that I
> am comfortable to use :)

Names pipes are a unix concept that saves you the hassle and
limitations of writing to and reading from a temp file.

You'll have to create the temp file and manage attaching
processes to it yourself.

-- 
Neil Cerutti



More information about the Python-list mailing list