1
0
mirror of https://github.com/Melon-Bread/gnu-slash-dot-files synced 2024-11-24 16:28:23 -05:00

Added No-Intro script

This commit is contained in:
Rain Clark 2019-06-08 14:10:59 -04:00
parent 1327d5d3e9
commit 9473c2b5c9

10
.bin/remove_japan.py Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import os
for file in os.listdir('./'):
if '(Japan)' in file:
print(f"Removing {file}...")
os.remove(file)
else:
print(f"Skipping {file}...")