Multiple Files Renaming with space


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Multiple Files Renaming with space
# 1  
Old 09-21-2007
Multiple Files Renaming with space

Hi,

I need help how to renaming multiple file. The original file look like this;

Test Monday.txt
Test Wednesday.txt
Test July.txt

I have more than hundred file in the directory.

How i want to rename all file to a new file name in one time? The new file maybe the same name e.g. TestMonday.txt OR different file name e.g. Test MondayJuly.txt
# 2  
Old 09-21-2007
You will have to run a loop that goes over all the files in the directory one at a time, because you can only rename one file in one mv command.

If you want to do this, you will have to establish some logic that can translate your current name to your new name. That means that all files will be renamed in a similar manner (removing the spaces in the filename, for instance).
# 3  
Old 09-21-2007
i still can't get it. Maybe i give another example, i have original file as below;

Test Fish#10125#STAR.txt
Test Fish#52134#MOON.txt
Test Fish#32598#CLOUD.txt
Test Fish#66789#STORM.txt

I need to remove the space between "Test Fish" but i want to do one time for all file before i encrypt it.

After i encrypt the file, the file name will become TestFish#10125#STAR_encrypted.txt ... so i need to change back to original file name also in one time for all files.

Does anyone know how to do this or know what ‘functions' I should use??? Smilie
# 4  
Old 09-21-2007
With the Z-Shell:

Code:
zsh 4.3.4% touch Test\ Fish#10125#STAR.txt Test\ Fish#52134#MOON.txt Test\ Fish#32598#CLOUD.txt Test\ Fish#66789#STORM.txt
zsh 4.3.4% autoload -U zmv                                                                                                
zsh 4.3.4% zmv  '*' '${f// /}'                                                                                            
zsh 4.3.4% ls
TestFish#10125#STAR.txt  TestFish#32598#CLOUD.txt  TestFish#52134#MOON.txt  TestFish#66789#STORM.txt
zsh 4.3.4% zmv  '*' '$f:r_encrypted.txt'                                                                                 
zsh 4.3.4% ls
TestFish#10125#STAR_encrypted.txt   TestFish#52134#MOON_encrypted.txt
TestFish#32598#CLOUD_encrypted.txt  TestFish#66789#STORM_encrypted.txt
zsh 4.3.4% zmv  '*' '${f//_encrypted/}' 
zsh 4.3.4% ls
TestFish#10125#STAR.txt  TestFish#32598#CLOUD.txt  TestFish#52134#MOON.txt  TestFish#66789#STORM.txt

# 5  
Old 09-22-2007
A simpler way,

Code:
ls Test* | while read file
do
mv "$file" `echo "$file" | sed 's/ //'`
done

# 6  
Old 09-22-2007
i like a simpler way...thanxs a lot. It work for me. I have a lot a files to rename and if i want to rename the file name from

1) TestFish_done.txt to Test Fish Done.txt,

And

2) FishOne_done.txt to FishOne.txt, then how?Smilie

Last edited by nazri76; 09-22-2007 at 04:05 AM..
# 7  
Old 09-22-2007
Case1: TestFish_done.txt to Test Fish Done.txt,

Code:
#!/bin/ksh
for oldfile in $(find . -name TestFish*)
do
   newfile="$(echo $oldfile | sed 's/Test/Test /g'|sed 's/\_/ /g')"
   mv "$oldfile" "$newfile"
done

Case2: FishOne_done.txt to FishOne.txt

Code:
#!/bin/ksh
for oldfile in $(find . -name FishOne*)
do
   newfile="$(echo $oldfile | sed 's/_done//g')"
   mv "$oldfile" "$newfile"
done

kamitsin
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Renaming multiple files in sftp server in a get files script

Hi, In sftp script to get files, I have to rename all the files which I am picking. Rename command does not work here. Is there any way to do this? I am using #!/bin/ksh For eg: sftp user@host <<EOF cd /path get *.txt rename *.txt *.txt.done ... (7 Replies)
Discussion started by: jhilmil
7 Replies

2. UNIX for Dummies Questions & Answers

Renaming Multiple files

Hello, I have multiple files that I want to change the names to. Let's say for example that I want to rename all the files in the left column to the names in the right column: What would be the easiest way to go about doing this? Thanks. (1 Reply)
Discussion started by: Scatterbrain26
1 Replies

3. Shell Programming and Scripting

Converting space to newlines and renaming files

Hi All, I have this code which has two problems: find . -name '*.fil' | xargs while read page do cat $page | awk '{for(i=1;i<=NF;i++) print $i}' $page>$page.txt done find . -name '*.fil.txt' | xargs rename '.fil.txt' .fil 1. I am running this code in a directory consisting of large... (1 Reply)
Discussion started by: shoaibjameel123
1 Replies

4. UNIX for Dummies Questions & Answers

Renaming multiple files

Hi, Can we rename multiples files using find or awk utility? Now I am doing it using for loop and getting the file name and in side the loop using the mv command. Like ine need t rename all txt files to doc file. For example a1.txt => a1.doc a2.txt => a2.doc a3.txt => a3.doc myfile.txt... (2 Replies)
Discussion started by: siba.s.nayak
2 Replies

5. UNIX for Dummies Questions & Answers

Renaming multiple files

I have multiple gif files in a directory with different names. How can i rename them to have this result: file01.gif file02.gif file03.gif . . . file0500.gif Thanks for your help. (3 Replies)
Discussion started by: netx
3 Replies

6. Shell Programming and Scripting

renaming multiple files

I have to rename 100+ files at a time on the server & was trying to use a script for doing that. I have used ultra edit to create a file having current filename & new file name as below file234.txt | file956.txt file687.txt | file385.txt There is no fixed pattern while renaming & would... (20 Replies)
Discussion started by: crux123
20 Replies

7. Shell Programming and Scripting

Renaming multiple files

Hi, I have several hundred files I need to rename, and I'm would rather not hit F2 for each file individually to rename them. Example of file: large1961.jpg What I need the file to be renamed as: 1961.jpg I don't know what type of command I can execute within a shell script that would... (7 Replies)
Discussion started by: jayell
7 Replies

8. Shell Programming and Scripting

Renaming multiple files

I have a bunch of files txt1.csv--2008 thru to txt3.csv--2008. If i wanted to rename these files all at the same time to txt*.csv-2008 what would be the best way to do it... Just need to get rid of the extra - in each file name.. not all files are going to be called txt*.csv--2008. Just... (6 Replies)
Discussion started by: Jazmania
6 Replies

9. UNIX for Dummies Questions & Answers

Renaming Multiple files

Hi All my dear friends I had multiple files in my directory with .pcv and .sqv extn I want to rename all .pcv files with .pc extn and all .sqv files with .sql extn Please help me out.:eek::mad::rolleyes: e.g. /trimsbld/users/dhirens/scripts/newfolder==>ll -rt total 2856 -rwxr-xr-x 1... (2 Replies)
Discussion started by: dhiren_shah
2 Replies

10. UNIX for Dummies Questions & Answers

Renaming multiple files

Help! I was trying to rename multiple files. Like in DOS, i decided to use wildcards and now i am missing some files. Any ideas on how to recover them? Or find out where the files went? I had these 3 files resume1.log elecresume.log compresume.log The command I ran was mv *.log *.log.bak... (6 Replies)
Discussion started by: rmayur
6 Replies
Login or Register to Ask a Question