8 lines
96 B
Python
8 lines
96 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
for f in sys.argv[1:]:
|
|
with open(f, 'w') as f:
|
|
pass
|