(root)/
Python-3.11.7/
Lib/
test/
test_asyncio/
echo2.py
       1  import os
       2  
       3  if __name__ == '__main__':
       4      buf = os.read(0, 1024)
       5      os.write(1, b'OUT:'+buf)
       6      os.write(2, b'ERR:'+buf)