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 do you rename the files(*.sh) with file names containing space in it?for example "interview question.sh" needs to rename to "interview-question.sh".
Appreciate your inputs.Thanks.

Answer Posted / chetan

sorry, forgot to keep the "mv" command in my last post.

for i in *.sh
do
n=`echo $i|sed 's/ /-/g'`
mv "$i" $n
done

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What can you do with powershell?

1191


What is shell chemistry?

1028


What is the command to find out users on the system?

1015


What is scripting used for?

1092


What makes c shell a more preferable option than the bourne shell?

1019


how will you find the total disk space used by a specific user?

1089


Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.

2709


Explain about return code?

1120


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 fastest scripting language?

1042


Print the 10th line without using tail and head command.

2218


Why are there shells on the beach?

1190


What are the default permissions of a file when it is created?

1066


What is eval in shell script?

1325


What is the difference between bash and shell?

1169