On Wed, Nov 24, 2004 at 06:21:50PM -0000, Tanney, Austin wrote:
> The naming system is as follows (this is an example filename that actually exists)
> RDCR011_D09_2004-03-30.scf
>> In this case.. I want to change the name to
> xRDCR011_D09.scf
>> Basically.. I want to remove the characters "_2004-03-30"
> Now.. these are not set characters and change for each file.
> I'm happy enough to run this as 4 processes.. i.e., one for each file type.
>Okay - are the filenames all the same length ?
if so - cut may be your friend here !
for i in *
do
export $start =`( echo $i | cut -c1-11)`
export $end = `(echo $i | cut -c22-25)`
mv $i ${start}${end}
done
It's not going to be the fastest - but it'll work :)
P
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!