mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
5 lines
111 B
Python
Executable file
5 lines
111 B
Python
Executable file
#!/usr/bin/env python3
|
|
import sys
|
|
with open(sys.argv[-1]) as f:
|
|
for line in f:
|
|
print(line, end='')
|