Kind of shi that half works
This commit is contained in:
5
scripts/remove/remove.py
Normal file
5
scripts/remove/remove.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from pathlib import Path
|
||||
|
||||
def main(args):
|
||||
for item in args:
|
||||
Path(args).unlink(missing_ok=True) # missing_ok=True prevents error if file is missing
|
||||
Reference in New Issue
Block a user