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
Batch changing file extensions cdines Shell Programming and Scripting 5 05-19-2008 02:11 AM
Stripping out extensions when file has multiple dots in name Nemelis Shell Programming and Scripting 8 05-14-2008 05:12 AM
Truncate multiple file extensions prvnrk Shell Programming and Scripting 12 04-04-2008 07:20 AM
extensions inkastinka UNIX for Dummies Questions & Answers 3 05-19-2006 08:22 AM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-06-2001
Registered User
 

Join Date: Nov 2001
Posts: 2
Post File name extensions

Hello people, I was wondering if anyone could help me?

I want to produce a shell script that changes the filename extension on all matching file.

E.G. change all files called ‘something.rtf’ to ‘something.doc’ by giving the command:


Changex rtf doc

*where ‘Changex’ is the name of my shell script.

Does anyone know how to do this or know what ‘functions’ I should use???

with regards,
nick

Last edited by thurrock; 11-06-2001 at 04:54 PM.
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 11-06-2001
Perderabo's Avatar
Unix Daemon
 

Join Date: Aug 2001
Location: Washington DC Area
Posts: 8,318
Code:
#! /usr/bin/ksh

old=$1
new=$2

for file in *.$old ; do
     mv $file ${file%$old}$new
done
exit 0
Reply With Quote
  #3 (permalink)  
Old 11-07-2001
Registered User
 

Join Date: Nov 2001
Posts: 2
Smile thanks

fantastic - it works!!! - you are a genius!!!
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:26 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