Files
BUGPy-mOS-0/scripts/touch_file/touch_file.py
2026-04-24 08:42:19 -04:00

6 lines
127 B
Python

from pathlib import Path
def main(args):
for target in args:
path = Path(target)
path.touch(exist_ok=True)