python linux tee

linux tee no funciona con python?



(1)

Del man python :

-u Force stdin, stdout and stderr to be totally unbuffered. On systems where it matters, also put stdin, stdout and stderr in binary mode. Note that there is internal buffering in xreadlines(), readlines() and file- object iterators ("for line in sys.stdin") which is not influenced by this option. To work around this, you will want to use "sys.stdin.read‐ line()" inside a "while 1:" loop.

Entonces lo que puedes hacer es:

/usr/bin/python -u client.py >> logfile 2>&1

O usando el tee :

python -u client.py | tee logfile

Hice un script en Python que se comunica con un servidor web utilizando un bucle infinito. Quiero registrar todos los datos de comunicación en un archivo y también monitorearlos desde el terminal al mismo tiempo. así que usé el comando tee como este.

python client.py | tee logfile

Sin embargo, no obtuve nada del terminal ni del archivo de registro. La secuencia de comandos de Python está funcionando bien. ¿que está sucediendo aquí? ¿Me estoy perdiendo de algo?

Se agradecería algún consejo. gracias de antemano.