mirror of
https://github.com/Melon-Bread/gnu-slash-dot-files
synced 2024-11-25 00:38:23 -05:00
11 lines
199 B
Python
11 lines
199 B
Python
|
#!/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}...")
|