changing multiple directory names


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting changing multiple directory names
# 1  
Old 09-12-2012
changing multiple directory names

Hi guys,

I have lots of files that look like:

ABC.packed.dir
DEF.packed.dir
GHI.packed.dir

etc...

I would like them to have more of the usual naming convention

ABC
DEF
GHI

etc...

so I was thinking that I could:
Code:
for dirname in *.packed.dir 
do     
      rename $dirname.packed.dir $dirname *dirname.packed.dir 
done

but it doesn't work

can one of you guys help me,

Tabitha
# 2  
Old 09-12-2012
Assuming you're using either Kshell or bash, this should work:

Code:
for dirname in *.packed.dir
do
      echo mv $dirname ${dirname%%.*}
done

When you run this and the output looks good, delete the echo from the line to actually do the rename.

The syntax ${dirname%%.*} removes the longest string starting with a dot (.) to the end of the string contained in dirname. This will chop everything from the first dot to the end of the original name resulting in something like:
Code:
mv foo.packed.dir foo

# 3  
Old 09-12-2012
Hey there!
If you have the rename utility, which is a script written in Perl, you could do this:

Code:
rename 's/\.packed\.dir//' *.packed.dir

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Changing file names

sac_pzs_iv_epoz_hhe__2013.074.14.40.46.0000_2599.365.23.59.59.99999 sac_pzs_iv_epoz_hhn__2013.074.14.40.46.0000_2599.365.23.59.59.99999 sac_pzs_iv_epoz_hhz__2013.074.14.40.46.0000_2599.365.23.59.59.99999 sac_pzs_iv_haga_hhe__2006.111.00.00.00.0000_2599.365.23.59.59.99999... (3 Replies)
Discussion started by: kristinu
3 Replies

2. Shell Programming and Scripting

Changing file names

I have a series of files as follows file-1.pdf file-2.pdf file-3.pdf file-4.pdf file-5.pdf file-6.pdf file-7.pdf I want to have the file names with odd numbers starting from an initial number, for example 2000. The result would be the following: file-2001.pdf file-2003.pdf... (9 Replies)
Discussion started by: kristinu
9 Replies

3. Shell Programming and Scripting

Changing file names

I have file names as shown and want to change the name to have only the first four numbers. /home/chrisd/Desktop/nips/nips_2013/5212-learning-feature-selection-dependencies-in-multi-task-learning.pdf /home/chrisd/Desktop/nips/nips_2013/5213-parametric-task-learning.pdf... (3 Replies)
Discussion started by: kristinu
3 Replies

4. UNIX for Dummies Questions & Answers

[Solved] Writing a loop to changing the names of files in a directory

Hi, I would like to write a loop to change the names of files in a directory. The files are called data1.txt through data1000.txt. I'd like to change their names to a1.txt through a1000.txt. How do I go about doing that? Thanks! (2 Replies)
Discussion started by: evelibertine
2 Replies

5. Shell Programming and Scripting

[SOLVED] Changing file names

I have written a csh script that changes the name of file from src to dst. I am getting the error below: TESTAmvfiles DONE TESTAmvfiles set: Variable name must begin with a letter. The csh script is: #!/bin/csh #... (0 Replies)
Discussion started by: kristinu
0 Replies

6. Shell Programming and Scripting

Rename multiple file names in a directory

I hope some one can help me I have multiple files in a directory with out extension like as below mentioned. But i want to change all the file names along .DDMMYYYYHHMISS format. And all files should have same DDMMYYYYHHMISS. Scenario: direcory name = /vol/best/srcfiles files in a... (4 Replies)
Discussion started by: hari001
4 Replies

7. Shell Programming and Scripting

Changing file names

I have lot of files whose names are something like the following. I want to change the name of all the files from 'npt02' to 'n02'. npt02-z30-sr65-rgdt0p50-dc0p01-16x12drw.tpf npt02-z30-sr65-rgdt0p50-dc0p01-8x6drw.back npt02-z30-sr65-rgdt0p50-dc0p01-8x6drw-bst-mis.xy... (5 Replies)
Discussion started by: kristinu
5 Replies

8. Shell Programming and Scripting

Changing names

I have file names m04-npt06-z30-syn.ps m04-npt06-dp018-8x6smp.vmod m04-npt06-sr40-syn-dp01-16x12drw.params m04-npt06-sr40-syn-dp008-16x12drw.params m04-npt06-sr40-syn-dp008-16x12drw.vmod m04-npt06-sr40-syn-dp008-16x12drw.bck m04-npt06-sr40-syn-dp008-16x12drw.exp... (6 Replies)
Discussion started by: kristinu
6 Replies

9. UNIX for Dummies Questions & Answers

Machine names changing on network

Hello, this is my first post, and yeah, I'm quite new to UNIX, so please bare with me... My question has to do with a few Macs on a Windows network, but since the question is not OS X specific (I think) or Windows specific (I think), but rather UNIXish (I think) I chose to post here rather than... (3 Replies)
Discussion started by: fxj
3 Replies

10. OS X (Apple)

changing multiple directory names w/ sed

ive looked and couldnt find an answer... can someone tell me how i can replace spaces and characters with an "_" on multiple folders? thanx muchly. (1 Reply)
Discussion started by: RahJiggah
1 Replies
Login or Register to Ask a Question