The UNIX and Linux Forums  

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




Thread: renaming files
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 01-05-2009
vbe's Avatar
vbe vbe is offline Forum Staff  
Moderator
  
 

Join Date: Sep 2005
Location: Switzerland - GE
Posts: 1,585
Depends on what you have in that directory....
check:
ls -al ABC*.TXT| wc -l
Gives you how many files?

Have you tried

Code:
mv ABC?XYZ.TXT  ABCXYZ.TXT

Theres many options... (with sed for example..)