Jörn Nettingsmeier wrote:
Andrew Golightly wrote:
the script worked great. One also needs to change the meta files..
subtle change to the line above:
for i in `find -name *_??.xml.meta` ; do mv $i `echo $i | sed
's/\.xml//'` ; done
a more generic solution that does everything in one go:
for i in `find -name *_??.xml*` ; do \
mv $i `echo $i | sed 's/\.xml//'` ; done
Also noticed that the resources meta files need to be renamed. Eg. If an
asset is called image.gif, then the current meta file is image.xml.meta,
but that needs to be changed to image.gif.meta
I'll write a script to convert them when I get time. Unless someone
beats me to it :)
cheers,
Andrew
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]