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 here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
how to rename multiple files with a single command tayyabq8 Shell Programming and Scripting 5 03-18-2008 12:04 PM
How to rename multiple files with a common suffix er_ashu UNIX for Dummies Questions & Answers 1 09-28-2007 07:52 AM
Rename part of multiple files sajjad02 Shell Programming and Scripting 4 02-22-2005 09:30 AM
Rename multiple files luiz_fer10 UNIX for Dummies Questions & Answers 7 06-11-2002 05:06 AM
Rename Multiple Files molonede UNIX for Dummies Questions & Answers 1 11-14-2000 08:40 AM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-18-2008
Registered User
 

Join Date: Mar 2008
Posts: 24
rename multiple files

Hi,

can anyone have a ksh script to rename multiple files (ie to remove .Z extension of the files)

can someone correct this?

for i in *.Z
do
var1 = substr($i, 1,at(".Z",$i)-1)
mv $i $var1
done

Thanks..
Antony
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 03-18-2008
joeyg's Avatar
premier etoile de match
 

Join Date: Dec 2007
Location: Home of world champion Boston Celtics
Posts: 511
Wink One approach, although not sure if basename exists in all unix flavors

The following does a copy; you can change to the move (mv) command

Code:
> cat copy_csv
#! /bin/bash

for i in *.csv
do
  var1=$(basename "$i" .csv)
  cp $i $var1
done
Reply With Quote
  #3 (permalink)  
Old 03-18-2008
Moderator
 

Join Date: Feb 2007
Posts: 1,561
Another one:

Code:
ls *.Z|sed 's/\(.*\)\.Z/mv & \1/'|sh
Try this first to be shure you get the right files before sh do the job:

Code:
ls *.Z|sed 's/\(.*\)\.Z/mv & \1/'
Regards
Reply With Quote
  #4 (permalink)  
Old 03-18-2008
Registered User
 

Join Date: Oct 2007
Location: USA
Posts: 462
Code:
for i in *.Z
do
   mv $i ${i.Z}
done
Reply With Quote
  #5 (permalink)  
Old 03-18-2008
Registered User
 

Join Date: Oct 2007
Location: USA
Posts: 462
Replace
Code:
mv $i ${i.Z}
with
Code:
mv $i ${i%.Z}
Reply With Quote
  #6 (permalink)  
Old 03-18-2008
Registered User
 

Join Date: Mar 2008
Posts: 24
rename multiple files

Quote:
Originally Posted by shamrock View Post
Code:
for i in *.Z
do
   mv $i ${i.Z}
done
hi

Thanks for your reply.But I would like to use substring operation.


Thanks
Reply With Quote
  #7 (permalink)  
Old 03-18-2008
Registered User
 

Join Date: Mar 2008
Posts: 24
Quote:
Originally Posted by joeyg View Post
The following does a copy; you can change to the move (mv) command

Code:
> cat copy_csv
#! /bin/bash

for i in *.csv
do
  var1=$(basename "$i" .csv)
  cp $i $var1
done
hi

Thanks for your reply.But I would like to use substring operation.


Thanks
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:19 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0