[EMAIL PROTECTED] wrote in news:mailman.2448.1223974725.3487.python-
[EMAIL PROTECTED] in comp.lang.python:
> Hi!
>
> I wanna write a file processor in python (Windows XP).
> I wanna use pipe, and not parameters.
>
> When I write this:
>
> ...
> l = []
> while 1:
> t = sys.stdin.read(1)
>
Hi!
I wanna write a file processor in python (Windows XP).
I wanna use pipe, and not parameters.
When I write this:
...
l = []
while 1:
t = sys.stdin.read(1)
if t == '':
break
l.append(t)
t = "".join(l)
...
and use code this:
process.py http://mail.python.org/mailman/listi