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

11 lines
199 B
Python
Executable File

#!/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}...")