xonsh/tests/bin/cat
Anthony Scopatz 6288644fe5 hopfule fix
2016-10-26 00:40:47 -04:00

5 lines
110 B
Python
Executable file

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