xonsh/tests/bin/cat

6 lines
111 B
Text
Raw Normal View History

#!/usr/bin/env python3
2016-10-25 20:27:27 -04:00
import sys
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='')