1
0
mirror of https://github.com/Melon-Bread/gnu-slash-dot-files synced 2024-11-25 00:38:23 -05:00
gnu-slash-dot-files/.bin/remove_japan.py

11 lines
199 B
Python
Raw Permalink Normal View History

2019-06-08 14:10:59 -04:00
#!/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}...")