summaryrefslogtreecommitdiff
path: root/dyecmd/unfall.py
blob: 91e5db511037ba709a658f0d142728cf73b39184 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# dyecmd ../../../client-data/graphics/items/equipment/*/*.png
import os
a=open('revert.sh', 'w')

for f in os.listdir('.'):
	try:
			#for sub in os.listdir(folder):
			if ('1' in f) and ('.png' in f):
				a.write('mv '+f+' '+f[1:])
				a.write('\n')
	except:
		continue
a.close()