Kind of shi that half works
This commit is contained in:
6
scripts/touch_file/touch_file.py
Normal file
6
scripts/touch_file/touch_file.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from pathlib import Path
|
||||
|
||||
def main(args):
|
||||
for target in args:
|
||||
path = Path(target)
|
||||
path.touch(exist_ok=True)
|
||||
Reference in New Issue
Block a user