add missing pcat.py

This commit is contained in:
Johann Dreo 2021-08-05 14:45:09 +02:00
commit fff4b83962

8
pcat.py Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
#
import sys
while True:
with open(sys.argv[1],'r') as fd:
print(fd.read(), flush=True)