python (3.11.7)

(root)/
lib/
python3.11/
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)