mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-12 10:41:45 +08: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)
|