Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to rename all the files in a folder having specific
extension?
Example: I have some files with extension (.txt) in a folder
name 'Test'. I have to rename all the .txt files in a test
and its subdirectories to .my extension.

Answer Posted / vipin

The script given below may work properly.
find command is used to search in all the subdirectories.
basename will extract only filename with .txt extension from
absolute path of file.
cut command will print opnly filename without extension.
mv command is uset to rename.

#!/bin/bash
for i in $(find -name \*.txt)
do
mv $i $(echo `basename $i` | cut -d . -f 1).my
done

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is a script important?

1107


What are the advantages of shell scripting?

1092


Explain about sourcing commands?

1152


What is the default shell of solaris?

1083


write a shell script to generate a alert ? like when ur birthday came then generate a alert ur birthday is today like that ?

4184


What is the equivalent of a file shortcut that we have a window on a linux system?

1175


What is shell terminal?

998


How to get script name inside a script?

1062


What is shell chemistry?

1028


How will you emulate wc –l using awk?

1596


What is the significance of $#?

1167


What is the difference between break and continue commands?

1155


What language is bash written in?

1035


What is the first line in a shell script?

1167


What are the different types of shell scripting?

1172