1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-14 18:25:30 +00:00
bazarr/libs/git/test/fixtures/cat_file.py
2018-09-16 20:33:04 -04:00

6 lines
136 B
Python

import sys
with open(sys.argv[1]) as fd:
for line in fd.readlines():
sys.stdout.write(line)
sys.stderr.write(line)