summaryrefslogblamecommitdiff
path: root/dyecmd/fal.py
blob: a064646c9d2a9300dbce48a2e3f4a703336c6860 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                           
# dyecmd ../../../client-data/graphics/items/generic/*.png
import os
a=open('script.sh', 'w')

for file in os.listdir('.'):
	try:
		if '.png' in file:
			a.write('./dyecmd '+file+' 1'+file)
			a.write('\n')
	except:
		continue
a.close()