root@www3.bankenverband.de:~/Work > cat test.py
import sys
while 1:
try:
line = sys.stdin.readline()
except KeyboardInterrupt:
break

if not line:
break

print line
root@www3.bankenverband.de:~/Work > echo fraud is philanthropy | python test.py
fraud is philanthropy

root@www3.bankenverband.de:~/Work >






:-/