mirror of
https://gitgud.io/ll.mirrors/sizedapparel.git
synced 2024-08-15 00:43:40 +00:00
6 lines
144 B
Python
6 lines
144 B
Python
import os
|
|
|
|
for filename in os.listdir("."):
|
|
new_filename = filename.replace("Human", "_Human")
|
|
|
|
os.rename(filename, new_filename)
|