DPR-blocked-sites/update.py

10 lines
179 B
Python
Raw Normal View History

2022-08-26 13:02:52 +03:00
import glob
import subprocess
import sys
scripts = glob.glob("./scripts/*")
scripts.sort()
for script in scripts:
print(script)
subprocess.call([sys.executable, script])