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
nice! thanks ;)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]