named-pipes-services/pcat.py
nojhan 016852e281 adds python implementations
- more README
- fix some C++ code along the way
2022-08-31 00:37:17 +02:00

11 lines
184 B
Python
Executable file

#!/usr/bin/env python
import sys
if __name__ == "__main__":
while True:
with open(sys.argv[1]) as fin:
line = fin.readline()
sys.stdout.write(line)