The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
rename a lot of files again ajp7701 Shell Programming and Scripting 11 03-31-2008 08:36 PM
rename files help piltrafa UNIX for Dummies Questions & Answers 2 10-04-2007 10:47 AM
trying to rename the files in dir hankooknara Shell Programming and Scripting 8 07-02-2007 04:36 AM
How to rename files? CompuTelSystem UNIX for Dummies Questions & Answers 9 05-14-2002 04:28 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 11-01-2006
mpang_ mpang_ is offline
Registered User
  
 

Join Date: Mar 2006
Posts: 89
rename files

hey all,

I have files in the format of
ABCD20061101
and
ABCDEF20061101
in one directory, I would like to change all ABCD20061101 to ABCDEF20061101 and the problem is if I do a simple pattern match of ABCD, then those ABCDEF20061101 would also change to ABCDEFEF20061101, can anybody help? thanks!
  #2 (permalink)  
Old 11-01-2006
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,800

Code:
#!/bin/ksh
find /path/to/files -name *20061101 | \
while read file 
do
   newfile=${file%%20061101}
   newfile=$newfile"EF"20061101
   mv "$file" "$newfile"
done

  #3 (permalink)  
Old 11-01-2006
mpang_ mpang_ is offline
Registered User
  
 

Join Date: Mar 2006
Posts: 89
Sorry that I wasn't clear enough, the filename could be

ABCD20061101.txt or ABCD12345678.txt

and I want them to change to

ABCDEF20061101.txt or ABCDEF12345678.txt

Please help! Thanks!
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 05:53 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0