mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-12 09:15:53 +00:00
6 lines
136 B
Python
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)
|