replace text


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers replace text
# 8  
Old 07-01-2011
thanks,

I tested the code of Corona 688 and it works, how do I do it in multiple files? With a find?

i think that not work well when i use "cat",

With code of DGPickett , also works well

and soryy for my english

PD: i have Unix

Last edited by nonanov; 07-01-2011 at 05:03 PM..
# 9  
Old 07-01-2011
Code:
 
find . . . | while read f
do
 sed '...' $f >$f.new
done

We all speak computa heyah!
This User Gave Thanks to DGPickett For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Exact Text Replace

I am currently working with a bash script to change some names around in 3 files. I am attempting to do this with sed but I haven't been able to get it so it won't replace partial matches. Below is an example of the files I am trying to edit. My main goal is to replace foo with test, but I... (4 Replies)
Discussion started by: Takau
4 Replies

2. UNIX for Advanced & Expert Users

Search and replace text

HI I have property files having content QA_server_name=10.232.54.7 QA_port_number=18000 DEV_server_name=10.235.60.73 DEV_port_number=18000 and a .jason file having content like this { "server":"localhost" "port":"17000" ------ } I will get the parameter... (1 Reply)
Discussion started by: mdtausifsh
1 Replies

3. UNIX for Dummies Questions & Answers

Replace text

Hi, I have 50 shells in a particular directory. In each shell, we have a variable MAIL_SUCCESS=abc@xyz.com,def@xyz.com,emi@xyz.com The variable could be different. Now my requirement is I've to replace abc with def in all the shells present. I have been able to get the command for that: ... (3 Replies)
Discussion started by: donisback
3 Replies

4. Shell Programming and Scripting

Find and add/replace text in text files

Hi. I would like to have experts help on below action. I have text files in which page nubmers exists in form like PAGE : 1 PAGE : 2 PAGE : 3 and so on there is other text too. I would like to know is it possible to check the last occurance of Page... (6 Replies)
Discussion started by: lodhi1978
6 Replies

5. Shell Programming and Scripting

replace text

What command can I use to replace the last part of a text string with different text. Example: I want to replace the text NAME in the following string with the text NEW_NAME abc~diff~other~something~NAME The number of ~ can change. (4 Replies)
Discussion started by: jody325
4 Replies

6. Shell Programming and Scripting

How to replace text in a file with text entered

I am trying to write a shell script that will allow the typing of a value, then using that value to replace data in a text file. I suspect I need sed. The format of the file is: Variable1:Value1 Variable2:Value2 The interaction would be something like: Shell Prompt: "Please enter the... (9 Replies)
Discussion started by: cleanden
9 Replies

7. Shell Programming and Scripting

find text but replace a text beside it

I have an html file that looks like this (this is just a part of the html file): <td colspan="3" rowspan="1" style="text-align: center; background-color: rgb(<!-- IDENTIFIER1 -->51, 255, 51);"><small><!-- IDENTIFIER2 -->UP</small></td> This is to automatically update the status of the... (4 Replies)
Discussion started by: The One
4 Replies

8. UNIX for Advanced & Expert Users

Replace the text between two lines with different text

I have a file which contains the following data. Parameters "CParameters" BEGIN DSSUBRECORD Name "TgtDB" Prompt "TgtDB" Default "edwdev" ParamType "0" ParamLength "0" ParamScale "0" END DSSUBRECORD MetaBag... (6 Replies)
Discussion started by: ukatru
6 Replies

9. UNIX for Dummies Questions & Answers

search and replace a specific text in text file?

I have a text file with following content (3 lines) filename : output.txt first line:12/12/2008 second line:12/12/2008 third line:Y I would like to know how we can replace 'Y' with 'N' in the 3rd line keeping 1st and 2nd lines same as what it was before. I tried using cat output.txt... (4 Replies)
Discussion started by: santosham
4 Replies

10. UNIX for Dummies Questions & Answers

Replace Text

I have i/p file with following text --> 456 StreetA Rd (702) 456-7890 123 StreetB Rd 345-5678 789 StreetC Rd 123-8765 356 StreetD Rd (702) 657-3456 I want o/p file like below --> 456 StreetA Rd (702) 456-7890 123 StreetB Rd (702) 345-5678 789 StreetC Rd (702)... (2 Replies)
Discussion started by: deep.singh
2 Replies
Login or Register to Ask a Question