blob: a064646c9d2a9300dbce48a2e3f4a703336c6860 (
plain) (
tree)
|
|
# 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()
|