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
removing the extension from all filenames in a folder johnmcclintock UNIX for Dummies Questions & Answers 5 05-21-2008 05:23 AM
removing particular lines ending with a .cnt extension in a text file ramky79 SUN Solaris 2 03-03-2008 01:17 AM
Feedback: Allow tar.gz extension for files DukeNuke2 Post Here to Contact Site Administrators and Moderators 2 08-29-2007 10:22 AM
How to test for files with a particular extension. jyotipg UNIX for Dummies Questions & Answers 1 05-09-2002 04:04 AM
How to list files will no extension Wing m. Cheng UNIX for Dummies Questions & Answers 5 02-21-2002 10:34 PM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 02-14-2007
Registered User
 

Join Date: Dec 2006
Posts: 4
Stumble this Post!
Removing the extension and FTP the files

Hi All

I am having around 100 files like:

a.xml.done
a.xml
b.xml.done
b.xml
....

Now I need to remove .done extension from the above and FTP the remaining files. Totally there are 100 files.
How to accomplish this
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 02-14-2007
...@...
 

Join Date: Feb 2004
Location: NM
Posts: 3,853
Stumble this Post!
If you remove the .done extension then you create two files with the same name, based on your list of files.
This removes the .done from files in the current directory.
Code:
find ./ -prune -type -f  -name '*.done' |\
while read file
  newfile=${file%%.done}
  mv $file $newfile
done
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 05:42 AM.


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