change name of multiple files in a same folder


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers change name of multiple files in a same folder
# 1  
Old 04-08-2009
change name of multiple files in a same folder

I searched and tried many answers from similar questions on this forum, but none of them finished my job. Maybe I am too novice to unix. Sorry I have to ask again,and hope I can get the answer.

I have a folder with files
sqcu001v.jpg,
sqcu002v.jpg,
...
sqcu100v.jpg.

I want to have them renamed to
dscu001v.jpg,
dscu002v.jpg,
....

That is, I want to change all the sqcu*.jpg to dscu*.jpg. What script can do the job?

Thanks a lot.
# 2  
Old 04-08-2009
Code:
for SFILE in `ls sqcu*v.log`; do
  TFILE=`echo ${SFILE} | sed 's/sqcu/dcsu/'`
  mv ${SFILE} ${TFILE}
done

This User Gave Thanks to TonyFullerMalv For This Post:
# 3  
Old 04-08-2009
If you have the rename program:

Code:
rename sq ds *jpg

If you have zsh:

Code:
autoload -U zmv
zmv  'sq*jpg' '$f:s/sq/ds/'

Otherwise:

Code:
for f in sq*jpg; do
  mv "$f" "ds${f#??}"
done


Last edited by radoulov; 04-08-2009 at 04:06 PM..
# 4  
Old 04-08-2009
Thank you very much, guys! They worked for me successfully! I wasted about 2 hours trying to play with it, but I failed. Now I got my answer in 5 minutes!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Execute multiple files in multiple folders and also output on same folder

How to execute multiple files in multiple folders and also output to be generated in the same folder? Hello Team, I have a path like Sanity_test/*/* and it has around 100+ folders inside with files. I would like to run/execute those files and output of execution to be placed on same /... (1 Reply)
Discussion started by: pushpabuzz
1 Replies

2. Shell Programming and Scripting

How to use a loop for multiple files in a folder to run awk command?

Dear folks I have two data set which there names are "final.map" and "1.geno" and look like this structures: final.map: gi|358485511|ref|NC_006088.3| 2044 gi|358485511|ref|NC_006088.3| 2048 gi|358485511|ref|NC_006088.3| 2187 gi|358485511|ref|NC_006088.3| 17654 ... (2 Replies)
Discussion started by: sajmar
2 Replies

3. UNIX for Dummies Questions & Answers

Unzipping a file which has multiple folders and each folder has the files with same name in it

Hi, I have a zipped file a.zip. This has got multiple folders in it say x and y. x contains a.txt and y contains a.txt. Is it possible to unzip this file and have the 2 files extracted and rename them to unique names. Thanks in advance. (1 Reply)
Discussion started by: arunkesi
1 Replies

4. Shell Programming and Scripting

To move multiple files to a new folder everytime

Hi , Below is the scenario A.txt B.txt C.csv .......... i want to move all the above files in to a new path & new folder .This folder is created based on date(for ex: today's fodler name will be 20120222).for Everyday move a new folder based on date has to be created & this folder... (1 Reply)
Discussion started by: jagadeeshn04
1 Replies

5. UNIX for Dummies Questions & Answers

Splitting multiple files in a folder

Hello, I am new to UNIX etc and am trying to split a large number of files, all with the extension .fas in the same folder, into smaller files wherever a string of 5ns occurs. So this file: >File1.fas nnnnnaaaaaattgattttctcagtatcgacgaatatggcgcagaaagttgaataa ... (1 Reply)
Discussion started by: Bryony
1 Replies

6. UNIX for Dummies Questions & Answers

Copy multiple files with space to folder

Please help , I am in an urgent need, Please help nawk '{for(i=1;i<=NF;i++){printf("%s\n",$i)}}' filename | sed 's/.*com//' | nawk '/pdf/ {printf("F:%s\n",$0)}' | while read line; do mv $line /images/; done the above script works for without spaces but,My path is also having some space... (3 Replies)
Discussion started by: umapearl
3 Replies

7. Shell Programming and Scripting

editing names of files in multiple folder

I have 1000's of directories which is named as numbers. Each directory contains multiple files. Each of these directories have a file named "att". I need to rename all the att files by adding the directory name followed by "_" then att for each of the directories. Directories 120 att... (2 Replies)
Discussion started by: Lucky Ali
2 Replies

8. UNIX for Dummies Questions & Answers

Renaming multiple files in a folder

Hi All, I am trying to change the XML filename in a folder to the rootelement in the XML file. Example: TestMsg2010-10-19_20_20_54.xml <?xml version="1.0" encoding="utf-8" ?> <R1Msg TimeStamp="2010-10-19T08:49:08.000000Z> <TestRec> <ID>1000</ID> </TestRec> </R1Msg> Wanted to extract the... (8 Replies)
Discussion started by: sree_chari
8 Replies

9. Shell Programming and Scripting

Renaming multiple files in a folder

Hi , Need help to rename the files in a folder. The .xml needs to be removed from the middle and appended to the end as in the example shown . Example From: TestMessage.xml2010-10-19_20_21_08 TestMessage.xml2010-10-20_20_21_09 TestMessage.xml2010-10-21_20_21_08... (4 Replies)
Discussion started by: sree_chari
4 Replies

10. Shell Programming and Scripting

using mv command for moving multiple files in a folder

Hi, I have a requirement where I need to move Bunch of folders containing multiple files to another archive location. i want to use mv command .I am thinking when we use mv command to move directory does it create directory 1st and then move all the files ? e.g source... (4 Replies)
Discussion started by: rkmbcbs
4 Replies
Login or Register to Ask a Question