xonsh/tests/bin/cat
Noortheen Raja 78091a22f3 style: isort imports
fix #4584
2022-01-31 11:16:51 -05:00

6 lines
112 B
Python
Executable file

#!/usr/bin/env python3
import sys
with open(sys.argv[-1]) as f:
for line in f:
print(line, end='')