Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rename multiple files .txt 1

Status
Not open for further replies.

beaster

Technical User
Aug 20, 2001
225
US
I have several files that all are the result of split -l 1. The names are:

sms_aa
sms_ab
sms_ac
sms_ad and so on....

I want to rename or add the extension .txt to all of these at once either after the split or in a seperate command....Any suggestions?

Thanks,
//beaster
 
Try the following script
Code:
#! /bin/sh
for f in sms_??
do
  cp $f $f.txt
done
You can use mv instead of cp if you're confident it's going to work.

Hope this helps. CaKiwi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top