xonsh/tests/bin/cat

7 lines
112 B
Text
Raw Normal View History

#!/usr/bin/env python3
2016-10-25 20:27:27 -04:00
import sys
2022-01-31 21:26:34 +05:30
2016-10-26 00:40:47 -04:00
with open(sys.argv[-1]) as f:
2016-10-25 20:27:27 -04:00
for line in f:
print(line, end='')