Initial Import

This commit is contained in:
2024-01-06 23:02:10 +13:00
commit 80d6d66f43
23 changed files with 399 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python
import os
for dirpath, dirs, files in os.walk(os.getcwd()):
if 'keep' in files:
for file in files:
path = os.path.join(dirpath, file)
os.unlink(path)